MCPcopy Create free account

hub / github.com/Swiip/jquery-springmvc-jpa / types & classes

Types & classes10 in github.com/Swiip/jquery-springmvc-jpa

ClassApplicationConfig
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
ClassLoginController
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
ClassLoginStatus
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
ClassSkill
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
InterfaceSkillRepository
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
ClassUser
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
InterfaceUserRepository
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
ClassUserServiceImpl
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
ClassWebApplicationConfig
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
ClassWebConfig
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