I am working a resonably sized java project that needs some sort of web based admin.
Just so we can remotely fire up the initializtion class, change some of the variables etc and have a a generally pretty(ish) front end.
I’ve come across the google web framework, which looks like an option and it seems JSP is another. I like the fact that GWT seems to have a number of UI elements out-of-the-box, time is somewhat critical..
is GWT overkill to use to create a web facing front-end for the project (its basically a demo, so we’ll use a local network machine running linux as a server)?
Any other options you may be aware of?
Thanks!
One nice thing about JSP is that it’s dead easy to get started with if you’re a Java house already. There are a few frameworks that can layer on top of JSP to help you a bit if you like, such as Struts.
In terms of rich UI components, you can use any of several JavaScript libraries (jQuery UI, Prototype+script.aculo.us, YUI, Google Closure library, etc.) which are server-technology-agnostic.
Edit: I should mention: I have a friend I trust who raves about GWT (I haven’t done enough with it to have an opinion). If you don’t already know JavaScript and don’t have time to learn it, but still want to create a rich web app, GWT may well be the way to go.