What’s the equivalent of S#arp architecture(.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.
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.
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:
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).