Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Do you know a site that offers a tutorial with sample source code for a 3-tier application (the usual data access layer, business layer and UI layer)?

The simple, readable and intuitive the source code. Best practices that are applied to the code are welcome as well.

share|improve this question

3 Answers

up vote 2 down vote accepted

Take a look at Appfuse , it's a quick-starter for java web application, provided with different frameworks : Tapestry , Spring MVC / Struts2 /JSF + Hibernate / Hibatis. It's based on a Maven build, all basic configurations done for you... One of the few 'realistic' sample that come to my mind...

Another one is the Petstore application from sun, and looking for 'petstore download' on Google, you can find stuff that seems interesting (to me anyway, i didn't give it a look :-), like this spring petstore, "an Ajax based application with DWR, Spring and Hibernate"...

share|improve this answer

Yes, have a look at the Spring MVC step by step example. It's very clear.

share|improve this answer

The sample application I'm aware of are the following:

  • The famous Java Pet Store from Sun. In the version I've downloaded, it used a wide range of Java EE technologies, but it didn't use any modern MVC framework.
  • From the Spring project you have several applications: JPetStore, Pet Clinic and more. All come with the spring download.
  • The Seam framework has an Hotel Booking application
  • You can also have a look at the 3 tier open source applications such as Liferay, but bare in mind that they may by very large. I'm not familiar with any that I can recommend, so please google for CRM/ERP/Protals etc. (sourceforge and freshmeat.net might be good sources as well)
  • Although it is backed by a CMS and not database, Artifactory may also serve as a good example.

Hope these help.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.