GWT is the main reason I’m moving into java for web development. Which java framework will work best with it, while also maximizing code reuse for mundane tasks like form validation, database access, pagination, etc?
Thanks.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I’m assuming you don’t mean web framework since GWT is itself a framework. I would use JSF to handle the application/business logic side. It makes it easy to store and scope beans, and access the DB. For reading the DB, any JPA flavor you like. I’ve had good expierence with Eclipselink, but now they all implement the same interfaces. Also you might want to look at EJBs in order to throw everything together and inject the JPA you’ll need.