Exemplary open-source Spring projects [closed] - spring

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
I am new to the Spring Framework. With Spring Core course recently taken, what would be some good example projects to download and learn good design from?
Perfect would be a well designed project, small enough to read through and understand, big enough to have a structure that can scale well.

Spring ships with a very comprehensive example application called PetClinic. It was originally inspired by the PetStore J2EE example application, demonstrating just how much easier things were in Spring.
This is intended to represent "best practice" for Spring development. You can find it in the distribution package.

Spring distribution has the samples which are very good to start with. The petclinic application is where I start with.

Related

Vaadin front-end for social network? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
From the information I've gathered, Vaadin seems best suited for business related applications.
I'm just wondering if anyone with experience could tell me if it would be possible to create Facebook 2.0 with Vaadin? It seems like a really good front-end for such a thing and I see many possibilities for amazing user experiences.
(That's not what I'm aiming to do, just trying to make the question more concrete)
Note that I'm a beginner and currently developing using Thymeleaf as my template engine.
I would not recommend Vaadin as a technology for realizing a social network. Vaadin is a server-side UI framework that stores the UI state in the session. With thousands of concurrently active users you have a massive memory consumption on the server. I would rather use a fat-client approach with client-side technologies such as angularJS.

Free course on Spring Framework [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
I am looking for a free online course on Spring Framework (similar to MongoDB university or coursera). However, I couldn't find anything for free. If anyone knows, please share. Thanks in advance.
I don't know if these are similar to the ones you specified, but this
can be a good bootstart for Spring FW.
Other than that, Spring - IMO - has a pretty good documentation to start with the different "modules" of spring. I often start there, and if I have questions after reading it, the specific google searches usually give me the answers I needed.
Just look at Udemy.com and search for “Spring”.
Introduction to Spring Boot
Spring Framework and Dependency Injection for Beginners
The above courses are free and unlimited.

High quality example code for a Java EE application using Spring MVC 3 [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
What are some open source Spring MVC 3 projects which I can download that implement many best-practices and have a relatively high code quality?
Check this references for detailed features and links on spring MVC3 . You can also find the samples SVN here. Check out the PetClinic/ samples .
You may have a look at Spring MVC showcases.
Also there are a lot of different open source projects, just look for 'spring mvc' in github - and you'll find them.

Where are good examples of Web applications built for skilled and intense use? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
I have spent most of my development career writing backend code, or front-end apps for used as daily business tools, by at least semi-skilled staff, e.g. order-tracking, sales capture, etc. That those I helped build peformed their tasks well is comfort enough, but I am still seeking excellence in the building of these kind of apps, versus the trendy emphasis on more personal relationships with the UI.
Can anyone recommend reading on this type of application (LOB?) on the web today? Any available examples to study?
I suggest that you read Don't Make me Think. Don't think that engaging UIs are not efficient. I would suggest the opposite.
Actually this answer has many useful links.

Reading code of real production projects. How to find? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I really like the idea of reading others people code to improve your design skills. Open source can help here a lot.
This can teach you basic OO principles. But I'm not writing frameworks, I'm writing code for real customers with quite complicated domain logic.
There are lots of manuals of different MVC frameworks(like Create a blog with Ruby on rails in 15 minutes). But hey it is difficult to mess with small pet project.
How can I get a possibility of reading real production code dealing with complicated business domain logic?
I'm interested in any MVC frameworks(any languages).
ASP.NET quickly offers a pretty comprehensive case study of an MVC implementation at the end of the book.
Django is both object oriented and MVC based framework written in Python. The Chapter 5: Models of the free Django book explains the MVC pattern as applied to Django.
Also look at this SO question.

Resources