this post was submitted on 22 May 2024
15 points (100.0% liked)

Java

1216 readers
4 users here now

For discussing Java, the JVM, languages that run on the JVM, and other related technologies.

founded 1 year ago
MODERATORS
 

I teach a course in java and springboot for beginners. I would like to walk my students through the code of a real world java or springboot application. Can anyone recommend a good example?

you are viewing a single comment's thread
view the rest of the comments
[–] deathmetal27 3 points 1 month ago* (last edited 1 month ago)

I'd suggest studying the code of the Spring Pet Clinic webapp. It will teach you how to engineer a simple three tier webapp.

https://github.com/spring-projects/spring-petclinic

However this is heavily geared towards the Spring framework and not core Java. But this project showcases best practices for writing code and structuring a project.