S#arp architecture equivalent in Java
What’s the equivalent of S#arp archite开发者_如何学Gocture(.net) in the java world.
A one stop package that encompasses all the best practices and well identified packages to start a web application project.
If you're looking for a one-stop package that handles ORMs, web framework, presentation etc., then several options exist in the Java world. Two widely used, but very different ones are:
- Spring MVC + Hibernate
- Grails
You'll find other frameworks such as Tapestry or Struts which are geared towards web applications. I can't advise on these other than to say they (again) are widely used and you probably need to perform more investigation.
All the above will ultimately rest atop the base-level Java Servlet framework, which is probably too low-level for your needs (but worth knowing about).
精彩评论