I am building a project in GWT that pulls an rss feed, executes regular expressions on the feed (in javascript using JSNI), and then stores that resulting data on a database where the users can access it.
As of right now, I have been writing all the code in the client-side .java file hoping that I could simply transfer it to the server-side. How do I go about moving part of the code to the server-side of the project? The code I have now is too bulky to be run on the client-side so id like to run it server-side and store the results in a database. Is it advisable to write the server-side code using GWT or should that be done with some other framework or maybe PHP? I would ideally like to develop the entire project with GWT since it has worked really well for me up to this point.
I have also been having trouble finding the resources that I need to connect to the database and update it, server-side from GWT. Can I do this with Hibernate?
Thank you very much!