Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/Swiip/jquery-springmvc-jpa
/ types & classes
Types & classes
10 in github.com/Swiip/jquery-springmvc-jpa
⨍
Functions
914
◇
Types & classes
10
Class
ApplicationConfig
This class replace the main Spring XML configuration file. There's a lot of annotations here, each one trigger Spring features. "@Configuration" is th
src/main/java/com/developpez/skillbrowser/ApplicationConfig.java:30
Class
LoginController
Spring MVC controller for the login actions.<br/> The Spring Security configuration make this controller the only one reachable without a valid authen
src/main/java/com/developpez/skillbrowser/controller/LoginController.java:34
Class
LoginStatus
LoginStatus. Simple DTO (Data Transfert Object) used to give a structure to a login status return in the login process
src/main/java/com/developpez/skillbrowser/model/dto/LoginStatus.java:6
Class
Skill
Skill model.<br/> "@Entity" declare the class as an JPA 2 managed bean.<br/> "@JsonIgnoreProperties(ignoreUnknown = true)" is a special JSON marshalin
src/main/java/com/developpez/skillbrowser/model/Skill.java:19
Interface
SkillRepository
Interface for the Data Access Object for the Skill model. It extends JpaRepository which is part of Spring Data JPA and declares all the commons metho
src/main/java/com/developpez/skillbrowser/repository/SkillRepository.java:20
Class
User
User model. This class is used both as application data and and security instance. <br/> "@Entity" declare the class as an JPA 2 managed bean.<br/> "@
src/main/java/com/developpez/skillbrowser/model/User.java:22
Interface
UserRepository
Interface for the Data Access Object for the User model. It extends JpaRepository which is part of Spring Data JPA and declares all the commons method
src/main/java/com/developpez/skillbrowser/repository/UserRepository.java:14
Class
UserServiceImpl
Service implementation for the User entity. Use the UserRepository to give standard service about the Skill entity. <br/> "@Service" trigger the Sprin
src/main/java/com/developpez/skillbrowser/service/impl/UserServiceImpl.java:29
Class
WebApplicationConfig
This class replace the main Spring MVC XML configuration file. "@Configuration" is the main annotation which trigger the class as a Spring configurati
src/main/java/com/developpez/skillbrowser/WebApplicationConfig.java:15
Class
WebConfig
Spring Web configuration in replacement for web.xml. It's a Spring overlay for the new Servlet 3.0 Java configuration. By implementing WebApplicationI
src/main/java/com/developpez/skillbrowser/WebConfig.java:20