I want to create java application with embedded web server (Jetty, are there any other servers which I can use for that?) and database (H2). GUI of application will be accessible through web browser.
I can choose any framework which will allow me to create RCP application easy and work flawlessly witch my server. Also good behavior of hot swapping is important. Is JRebel needed at all with embedded Jetty?
I think it's mostly the battle between Seam 3 and Spring 3, but maybe someone have any real experience with that kind of setup?
| |||
|
feedback
|
closed as not constructive by Don Roby, bmargulies, jdigital, JB Nizet, Tim Cooper Oct 13 '11 at 1:05
This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.
|
Jetty is probably the easiest web server to embed. If you are looking for a very small, lightweight configuration, consider creating your own For development, you can also use the I can't speak to Seam, but with Spring, the whole server starts up in about 5 seconds. Webapp reloads take less than 2 seconds. This may be fast enough that you don't need someting like JRebel. | |||
|
feedback
|