What do people use for presentation level in Java?

One of the things I don’t like java is too many frameworks, and for everything you have to choose what to use ...

I want to start a new web application, something like a small hostelworld.com. I decided to use spring as a DI and security system. but they still don’t know which structure to use for the presentation layer. What structure do you usually use to create a friendly user interface or what do you suggest me to use?

  • plain html + js framework (no java framework)
  • Richfaces
  • ICEfaces
  • Gwt
  • Zk
  • Vaadin
  • gate
  • Jsf 2.0
  • name yours

, , , , ,

+3
4

mikera, , , , . , , , :

  • , IDE. , . , Eclipse, , .

  • ? , . , .

, :)

0

velocity , , .

PhoneGap, Apple, Android Microsoft. , , , . .

, Google Guice - DI. Spring Guice.

0

I personally used

  • Apache wicket
  • Spring MVC + JSP
  • Jsf
  • Gwt

and for a web application that is not frequented, I recommend

  • Apache wicket

most.

It has a clear, event-based component and model approach and the lowest impact on the html templates I've seen so far.

0
source

JSF 2 (Mojarra) with Facelets as a viewing technology. Primary components for components are my last favorite.

0
source

All Articles