rajesh
rajesh

Reputation: 111

Java web framework to design UI easily

I am new to Java web. Can anyone recommend some useful and efficient web framework to create UI and develop the code using Java? I am a core Java developer.

UPDATED Thank you for your guidance guys i am planning to go with GWT ..and once again Thankyou...

Upvotes: 7

Views: 797

Answers (6)

MTilsted
MTilsted

Reputation: 5530

Why should there be problems with deploying GWT in Tomcat?

Upvotes: 0

Zdenek
Zdenek

Reputation: 11

I would also recommend GWT. Not only for client side possibilities, but also for integration in IDE - Eclipse plugin, Netbeans plugin (GWT4NB), client-server capabilities with RPC helps to use a lot of already done work (java libraries) on server side. Integration with Tomcat or another servlet container is of course also the main funcionality.

Upvotes: 0

Sid
Sid

Reputation: 4997

You can use Adobe Flex (licensed) and integrate it with Java. It provides rich UI toolkit.

Upvotes: 0

maslovalex
maslovalex

Reputation: 339

Vaadin (www.vaadin.com) may be one to try.

Upvotes: 1

Adeel Ansari
Adeel Ansari

Reputation: 39887

Java Web Frameworks might not help you in designing UI, in real sense. You might need to look at JavaScript frameworks for that, i.e. YUI, jQuery, Scriptaculous, extJS etc..

However, Wicket and Stripes, are good among Java Web Frameworks for rapid development. Found a related thread about mostly used Java Web Frameworks.

Upvotes: 3

User
User

Reputation: 1373

You may use GWT ( http://code.google.com/webtoolkit/ ). This will allow you to create most of your UI using Java only.

Upvotes: 2

Related Questions