views:

125

answers:

5

Hi, we think about to move a project from PHP to Java. It's a small web application with about 5 pages. We have JSF-experience, but i think JSF will be oversized and too cumbersome (we will massivly make use of JS). What can you recommend? GWT?

+2  A: 

If the web is so small, you can use servlets + JSP. I would choose Spring if you have previous experience with it.

I do not recommend GWT if your page is going to make extensive use of Javascript as, in my opinion, simple event handling works fine but it limits what you can do with JS.

Guido
Thank you about your estimation of GWT, that was helpful
Mulmoth
+1  A: 

5 pages call for nothing else but plain JSP + Servlets.

Bozho
I will think about it. Thank you.
Mulmoth
+2  A: 

Have a look at Wicket: http://wicket.apache.org/

Adriaan Koster
That also looks interesting.
Mulmoth
Hello Adriaan, it might be interesting for you that we followed your advice and will use Wicket for that.Thank you.
Mulmoth
Good to hear! It's a great platform, isn't it? Currently I am using Wicket again for a new startup company I am involved with. Good luck with your endeavours.
Adriaan Koster
+3  A: 

check out the ZK framework

MCA
I will give it a try - thank you
Mulmoth
+1  A: 

Well it depends what sophisticated are these 5 pages. The simplest (maybe not quickest) solution is write in plain Servlets/JSP. If you decide use a framework you can choose between:

If you want to create quick running prototype use without initial configuration problem, try:

cetnar
Thank you - I'd prefer to have more control over the html output, so i think something like Play! is the right direction.
Mulmoth