├── README.md ├── mvnw ├── mvnw.cmd ├── pom.xml └── src ├── main ├── java │ └── net │ │ └── guides │ │ └── springboot2 │ │ └── springboot2webappjsp │ │ ├── Springboot2WebappJspApplication.java │ │ ├── controllers │ │ └── UserController.java │ │ ├── domain │ │ └── User.java │ │ └── repositories │ │ └── UserRepository.java ├── resources │ └── application.properties └── webapp │ └── WEB-INF │ └── jsp │ └── users.jsp └── test └── java └── net └── guides └── springboot2 └── springboot2webappjsp └── Springboot2WebappJspApplicationTests.java /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/springboot2-webapp-jsp/HEAD/README.md -------------------------------------------------------------------------------- /mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/springboot2-webapp-jsp/HEAD/mvnw -------------------------------------------------------------------------------- /mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/springboot2-webapp-jsp/HEAD/mvnw.cmd -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/springboot2-webapp-jsp/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/net/guides/springboot2/springboot2webappjsp/Springboot2WebappJspApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/springboot2-webapp-jsp/HEAD/src/main/java/net/guides/springboot2/springboot2webappjsp/Springboot2WebappJspApplication.java -------------------------------------------------------------------------------- /src/main/java/net/guides/springboot2/springboot2webappjsp/controllers/UserController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/springboot2-webapp-jsp/HEAD/src/main/java/net/guides/springboot2/springboot2webappjsp/controllers/UserController.java -------------------------------------------------------------------------------- /src/main/java/net/guides/springboot2/springboot2webappjsp/domain/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/springboot2-webapp-jsp/HEAD/src/main/java/net/guides/springboot2/springboot2webappjsp/domain/User.java -------------------------------------------------------------------------------- /src/main/java/net/guides/springboot2/springboot2webappjsp/repositories/UserRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/springboot2-webapp-jsp/HEAD/src/main/java/net/guides/springboot2/springboot2webappjsp/repositories/UserRepository.java -------------------------------------------------------------------------------- /src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/springboot2-webapp-jsp/HEAD/src/main/resources/application.properties -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/jsp/users.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/springboot2-webapp-jsp/HEAD/src/main/webapp/WEB-INF/jsp/users.jsp -------------------------------------------------------------------------------- /src/test/java/net/guides/springboot2/springboot2webappjsp/Springboot2WebappJspApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RameshMF/springboot2-webapp-jsp/HEAD/src/test/java/net/guides/springboot2/springboot2webappjsp/Springboot2WebappJspApplicationTests.java --------------------------------------------------------------------------------