├── .gitignore ├── README.md ├── messagingtest ├── .gitignore ├── pom.xml ├── put └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── caveofprogramming │ │ │ ├── App.java │ │ │ ├── configuration │ │ │ ├── AjaxSecurityConfig.java │ │ │ ├── AuthenticationSuccessListener.java │ │ │ ├── CustomWebAuthenticationDetails.java │ │ │ ├── MailConfig.java │ │ │ ├── WebAppInitializer.java │ │ │ ├── WebSecurityConfig.java │ │ │ ├── WebSocketConfig.java │ │ │ └── WebSocketSecurityConfig.java │ │ │ ├── controllers │ │ │ ├── AuthController.java │ │ │ ├── ErrorHandlerController.java │ │ │ ├── GlobalExceptionHandler.java │ │ │ ├── MessageController.java │ │ │ ├── PageController.java │ │ │ ├── ProfileController.java │ │ │ ├── SearchController.java │ │ │ ├── StatusUpdateController.java │ │ │ └── Util.java │ │ │ ├── exceptions │ │ │ ├── ImageTooSmallException.java │ │ │ └── InvalidFileException.java │ │ │ ├── filters │ │ │ └── ExpiredSessionFilter.java │ │ │ ├── model │ │ │ ├── custom │ │ │ │ └── AccountDataDeleter.java │ │ │ ├── dto │ │ │ │ ├── ChatPageRequest.java │ │ │ │ ├── FileInfo.java │ │ │ │ ├── SearchResult.java │ │ │ │ ├── SimpleMessage.java │ │ │ │ ├── SpringUser.java │ │ │ │ └── UserStatusCheck.java │ │ │ ├── entity │ │ │ │ ├── Interest.java │ │ │ │ ├── Message.java │ │ │ │ ├── Profile.java │ │ │ │ ├── SiteUser.java │ │ │ │ ├── StatusUpdate.java │ │ │ │ ├── TokenType.java │ │ │ │ └── VerificationToken.java │ │ │ └── repository │ │ │ │ ├── InterestDao.java │ │ │ │ ├── MessageDao.java │ │ │ │ ├── ProfileDao.java │ │ │ │ ├── StatusUpdateDao.java │ │ │ │ ├── UserDao.java │ │ │ │ └── VerificationDao.java │ │ │ ├── service │ │ │ ├── AccountDataDeleterImpl.java │ │ │ ├── EmailService.java │ │ │ ├── FileService.java │ │ │ ├── InterestService.java │ │ │ ├── MessageService.java │ │ │ ├── ProfileService.java │ │ │ ├── SearchService.java │ │ │ ├── StatusUpdateService.java │ │ │ └── UserService.java │ │ │ ├── status │ │ │ └── PhotoUploadStatus.java │ │ │ └── validation │ │ │ ├── PasswordMatch.java │ │ │ └── PasswordMatchValidator.java │ ├── resources │ │ ├── ValidationMessages.properties │ │ ├── application-dev.properties │ │ ├── application.properties │ │ ├── mail │ │ │ └── verifyemail.html │ │ └── test.properties │ └── webapp │ │ ├── WEB-INF │ │ ├── layouts │ │ │ └── default.jsp │ │ ├── tags │ │ │ └── pagination.tag │ │ ├── tiles.xml │ │ └── tiles │ │ │ ├── about.jsp │ │ │ ├── addstatus.jsp │ │ │ ├── chatnotifications.jsp │ │ │ ├── chatview.jsp │ │ │ ├── chatviewscript.jsp │ │ │ ├── custom.css │ │ │ ├── editprofileabout.jsp │ │ │ ├── editstatus.jsp │ │ │ ├── exception.jsp │ │ │ ├── home.jsp │ │ │ ├── login.jsp │ │ │ ├── logout-success.jsp │ │ │ ├── message.jsp │ │ │ ├── messages.jsp │ │ │ ├── profile.jsp │ │ │ ├── register.jsp │ │ │ ├── results.jsp │ │ │ ├── tos.jsp │ │ │ ├── verifyemail.jsp │ │ │ └── viewstatus.jsp │ │ ├── css │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ ├── jquery.cookiebar.css │ │ ├── jquery.tagit.css │ │ └── main.css │ │ ├── favicon.ico │ │ ├── img │ │ ├── avatar.jpg │ │ ├── declining-global-poverty-share-1820-2015.png │ │ ├── logo.jpg │ │ ├── message.jpg │ │ └── navbar-logo.png │ │ └── js │ │ ├── bootstrap.min.js │ │ ├── connection-manager.js │ │ ├── jquery-ui.min.js │ │ ├── jquery.cookiebar.js │ │ ├── sockjs.min.js │ │ ├── stomp.min.js │ │ └── tag-it.min.js │ └── test │ ├── java │ └── com │ │ └── caveofprogramming │ │ └── tests │ │ ├── BulkTests.java │ │ ├── FileServiceTest.java │ │ ├── ProfileControllerRestTest.java │ │ ├── ProfileTest.java │ │ ├── StatusTest.java │ │ └── WebSocketTest.java │ └── resources │ └── com │ └── caveofprogramming │ └── tests │ └── data │ ├── hobbies.txt │ ├── names.txt │ └── random.txt ├── nginx-default.txt ├── spring-boot-checking-passwords-match ├── .gitignore ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── caveofprogramming │ │ │ ├── App.java │ │ │ ├── controllers │ │ │ ├── AuthController.java │ │ │ ├── PageController.java │ │ │ └── StatusUpdateController.java │ │ │ ├── model │ │ │ ├── SiteUser.java │ │ │ ├── StatusUpdate.java │ │ │ ├── StatusUpdateDao.java │ │ │ └── UserDao.java │ │ │ ├── security │ │ │ └── WebSecurityConfig.java │ │ │ ├── service │ │ │ ├── StatusUpdateService.java │ │ │ └── UserService.java │ │ │ └── validation │ │ │ ├── PasswordMatch.java │ │ │ └── PasswordMatchValidator.java │ ├── resources │ │ ├── ValidationMessages.properties │ │ └── application.properties │ └── webapp │ │ ├── WEB-INF │ │ ├── layouts │ │ │ └── default.jsp │ │ ├── tags │ │ │ └── pagination.tag │ │ ├── tiles.xml │ │ └── tiles │ │ │ ├── about.jsp │ │ │ ├── addstatus.jsp │ │ │ ├── editstatus.jsp │ │ │ ├── home.jsp │ │ │ ├── login.jsp │ │ │ ├── register.jsp │ │ │ └── viewstatus.jsp │ │ ├── css │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ └── main.css │ │ └── js │ │ └── bootstrap.min.js │ └── test │ └── java │ └── com │ └── caveofprogramming │ └── tests │ └── StatusTest.java ├── spring-boot-tutorial-adding-security ├── .gitignore ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── caveofprogramming │ │ │ ├── App.java │ │ │ ├── controllers │ │ │ ├── AuthController.java │ │ │ ├── PageController.java │ │ │ └── StatusUpdateController.java │ │ │ ├── model │ │ │ ├── StatusUpdate.java │ │ │ └── StatusUpdateDao.java │ │ │ ├── security │ │ │ └── WebSecurityConfig.java │ │ │ └── service │ │ │ └── StatusUpdateService.java │ ├── resources │ │ ├── ValidationMessages.properties │ │ ├── application.properties │ │ └── test.properties │ └── webapp │ │ ├── WEB-INF │ │ ├── layouts │ │ │ └── default.jsp │ │ ├── tags │ │ │ └── pagination.tag │ │ ├── tiles.xml │ │ └── tiles │ │ │ ├── about.jsp │ │ │ ├── addstatus.jsp │ │ │ ├── editstatus.jsp │ │ │ ├── home.jsp │ │ │ └── viewstatus.jsp │ │ ├── css │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ └── main.css │ │ └── js │ │ └── bootstrap.min.js │ └── test │ └── java │ └── com │ └── caveofprogramming │ └── tests │ └── StatusTest.java ├── spring-boot-tutorial-authentication ├── .gitignore ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── caveofprogramming │ │ │ ├── App.java │ │ │ ├── controllers │ │ │ ├── AuthController.java │ │ │ ├── PageController.java │ │ │ └── StatusUpdateController.java │ │ │ ├── model │ │ │ ├── StatusUpdate.java │ │ │ └── StatusUpdateDao.java │ │ │ ├── security │ │ │ └── WebSecurityConfig.java │ │ │ └── service │ │ │ └── StatusUpdateService.java │ ├── resources │ │ ├── ValidationMessages.properties │ │ └── application.properties │ └── webapp │ │ ├── WEB-INF │ │ ├── layouts │ │ │ └── default.jsp │ │ ├── tags │ │ │ └── pagination.tag │ │ ├── tiles.xml │ │ └── tiles │ │ │ ├── about.jsp │ │ │ ├── addstatus.jsp │ │ │ ├── editstatus.jsp │ │ │ ├── home.jsp │ │ │ ├── login.jsp │ │ │ └── viewstatus.jsp │ │ ├── css │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ └── main.css │ │ └── js │ │ └── bootstrap.min.js │ └── test │ └── java │ └── com │ └── caveofprogramming │ └── tests │ └── StatusTest.java ├── spring-boot-tutorial-bootstrap-panels ├── .gitignore ├── pom.xml └── src │ └── main │ ├── java │ └── com │ │ └── caveofprogramming │ │ ├── App.java │ │ └── controllers │ │ ├── AuthController.java │ │ └── PageController.java │ ├── resources │ └── application.properties │ └── webapp │ ├── WEB-INF │ ├── layouts │ │ └── default.jsp │ ├── tiles.xml │ └── tiles │ │ ├── about.jsp │ │ ├── addstatus.jsp │ │ └── home.jsp │ ├── css │ ├── bootstrap.min.css │ ├── bootstrap.min.css.map │ └── main.css │ └── js │ └── bootstrap.min.js ├── spring-boot-tutorial-connecting ├── .gitignore ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── caveofprogramming │ │ │ ├── App.java │ │ │ └── controllers │ │ │ ├── AuthController.java │ │ │ └── PageController.java │ ├── resources │ │ └── application.properties │ └── webapp │ │ ├── WEB-INF │ │ ├── layouts │ │ │ └── default.jsp │ │ ├── tiles.xml │ │ └── tiles │ │ │ ├── about.jsp │ │ │ ├── addstatus.jsp │ │ │ └── home.jsp │ │ ├── css │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ └── main.css │ │ └── js │ │ └── bootstrap.min.js │ └── test │ └── java │ └── com │ └── caveofprogramming │ └── tests │ └── StatusTest.java ├── spring-boot-tutorial-connection-manager ├── .gitignore ├── .project ├── .settings │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.m2e.core.prefs │ ├── org.eclipse.wst.common.component │ ├── org.eclipse.wst.common.project.facet.core.xml │ └── org.eclipse.wst.validation.prefs ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── caveofprogramming │ │ │ ├── App.java │ │ │ ├── configuration │ │ │ ├── MailConfig.java │ │ │ ├── WebSecurityConfig.java │ │ │ └── WebSocketConfig.java │ │ │ ├── controllers │ │ │ ├── AuthController.java │ │ │ ├── ChatController.java │ │ │ ├── GlobalExceptionHandler.java │ │ │ ├── PageController.java │ │ │ ├── ProfileController.java │ │ │ ├── SearchController.java │ │ │ ├── StatusUpdateController.java │ │ │ └── Util.java │ │ │ ├── exceptions │ │ │ ├── ImageTooSmallException.java │ │ │ └── InvalidFileException.java │ │ │ ├── model │ │ │ ├── dto │ │ │ │ ├── ChatRequest.java │ │ │ │ ├── FileInfo.java │ │ │ │ ├── SearchResult.java │ │ │ │ ├── SimpleMessage.java │ │ │ │ └── SpringUser.java │ │ │ ├── entity │ │ │ │ ├── Interest.java │ │ │ │ ├── Message.java │ │ │ │ ├── Profile.java │ │ │ │ ├── SiteUser.java │ │ │ │ ├── StatusUpdate.java │ │ │ │ ├── TokenType.java │ │ │ │ └── VerificationToken.java │ │ │ └── repository │ │ │ │ ├── InterestDao.java │ │ │ │ ├── MessageDao.java │ │ │ │ ├── ProfileDao.java │ │ │ │ ├── StatusUpdateDao.java │ │ │ │ ├── UserDao.java │ │ │ │ └── VerificationDao.java │ │ │ ├── service │ │ │ ├── EmailService.java │ │ │ ├── FileService.java │ │ │ ├── InterestService.java │ │ │ ├── MessageService.java │ │ │ ├── ProfileService.java │ │ │ ├── SearchService.java │ │ │ ├── StatusUpdateService.java │ │ │ └── UserService.java │ │ │ ├── status │ │ │ └── PhotoUploadStatus.java │ │ │ ├── validation │ │ │ ├── PasswordMatch.java │ │ │ └── PasswordMatchValidator.java │ │ │ └── velocity │ │ │ └── verifyemail.vm │ ├── resources │ │ ├── ValidationMessages.properties │ │ ├── application.properties │ │ ├── mail │ │ │ └── verifyemail.html │ │ └── test.properties │ └── webapp │ │ ├── WEB-INF │ │ ├── layouts │ │ │ └── default.jsp │ │ ├── tags │ │ │ └── pagination.tag │ │ ├── tiles.xml │ │ └── tiles │ │ │ ├── about.jsp │ │ │ ├── addstatus.jsp │ │ │ ├── chatnotifications.jsp │ │ │ ├── chatview.jsp │ │ │ ├── chatviewscript.jsp │ │ │ ├── checkmessages.jsp │ │ │ ├── editprofileabout.jsp │ │ │ ├── editstatus.jsp │ │ │ ├── exception.jsp │ │ │ ├── home.jsp │ │ │ ├── login.jsp │ │ │ ├── message.jsp │ │ │ ├── profile.jsp │ │ │ ├── register.jsp │ │ │ ├── results.jsp │ │ │ ├── verifyemail.jsp │ │ │ └── viewstatus.jsp │ │ ├── css │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ ├── jquery.tagit.css │ │ └── main.css │ │ ├── img │ │ ├── avatar.jpg │ │ └── message.jpg │ │ └── js │ │ ├── bootstrap.min.js │ │ ├── connectionmanager.js │ │ ├── jquery-ui.min.js │ │ └── tag-it.min.js │ └── test │ └── java │ └── com │ └── caveofprogramming │ └── tests │ ├── BulkTests.java │ ├── FileServiceTest.java │ ├── ProfileControllerRestTest.java │ ├── ProfileTest.java │ ├── StatusTest.java │ └── data │ ├── hobbies.txt │ └── names.txt ├── spring-boot-tutorial-context-root ├── .gitignore ├── pom.xml └── src │ └── main │ ├── java │ └── com │ │ └── caveofprogramming │ │ ├── App.java │ │ └── controllers │ │ ├── AuthController.java │ │ └── PageController.java │ ├── resources │ └── application.properties │ └── webapp │ ├── WEB-INF │ ├── layouts │ │ └── default.jsp │ ├── tiles.xml │ └── tiles │ │ ├── about.jsp │ │ └── home.jsp │ ├── css │ ├── bootstrap.min.css │ ├── bootstrap.min.css.map │ └── main.css │ └── js │ └── bootstrap.min.js ├── spring-boot-tutorial-crud-repository ├── .gitignore ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── caveofprogramming │ │ │ ├── App.java │ │ │ ├── controllers │ │ │ ├── AuthController.java │ │ │ └── PageController.java │ │ │ └── model │ │ │ ├── StatusUpdate.java │ │ │ └── StatusUpdateDao.java │ ├── resources │ │ └── application.properties │ └── webapp │ │ ├── WEB-INF │ │ ├── layouts │ │ │ └── default.jsp │ │ ├── tiles.xml │ │ └── tiles │ │ │ ├── about.jsp │ │ │ ├── addstatus.jsp │ │ │ └── home.jsp │ │ ├── css │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ └── main.css │ │ └── js │ │ └── bootstrap.min.js │ └── test │ └── java │ └── com │ └── caveofprogramming │ └── tests │ └── StatusTest.java ├── spring-boot-tutorial-custom-messages ├── .gitignore ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── caveofprogramming │ │ │ ├── App.java │ │ │ ├── controllers │ │ │ ├── AuthController.java │ │ │ └── PageController.java │ │ │ ├── model │ │ │ ├── StatusUpdate.java │ │ │ └── StatusUpdateDao.java │ │ │ └── service │ │ │ └── StatusUpdateService.java │ ├── resources │ │ ├── ValidationMessages.properties │ │ └── application.properties │ └── webapp │ │ ├── WEB-INF │ │ ├── layouts │ │ │ └── default.jsp │ │ ├── tiles.xml │ │ └── tiles │ │ │ ├── about.jsp │ │ │ ├── addstatus.jsp │ │ │ └── home.jsp │ │ ├── css │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ └── main.css │ │ └── js │ │ └── bootstrap.min.js │ └── test │ └── java │ └── com │ └── caveofprogramming │ └── tests │ └── StatusTest.java ├── spring-boot-tutorial-custom-tags ├── .gitignore ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── caveofprogramming │ │ │ ├── App.java │ │ │ ├── controllers │ │ │ ├── AuthController.java │ │ │ └── PageController.java │ │ │ ├── model │ │ │ ├── StatusUpdate.java │ │ │ └── StatusUpdateDao.java │ │ │ └── service │ │ │ └── StatusUpdateService.java │ ├── resources │ │ ├── ValidationMessages.properties │ │ └── application.properties │ └── webapp │ │ ├── WEB-INF │ │ ├── layouts │ │ │ └── default.jsp │ │ ├── tags │ │ │ └── pagination.tag │ │ ├── tiles.xml │ │ └── tiles │ │ │ ├── about.jsp │ │ │ ├── addstatus.jsp │ │ │ ├── home.jsp │ │ │ └── viewstatus.jsp │ │ ├── css │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ └── main.css │ │ └── js │ │ └── bootstrap.min.js │ └── test │ └── java │ └── com │ └── caveofprogramming │ └── tests │ └── StatusTest.java ├── spring-boot-tutorial-database-authentication ├── .gitignore ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── caveofprogramming │ │ │ ├── App.java │ │ │ ├── controllers │ │ │ ├── AuthController.java │ │ │ ├── PageController.java │ │ │ └── StatusUpdateController.java │ │ │ ├── model │ │ │ ├── SiteUser.java │ │ │ ├── StatusUpdate.java │ │ │ ├── StatusUpdateDao.java │ │ │ └── UserDao.java │ │ │ ├── security │ │ │ └── WebSecurityConfig.java │ │ │ └── service │ │ │ ├── StatusUpdateService.java │ │ │ └── UserService.java │ ├── resources │ │ ├── ValidationMessages.properties │ │ └── application.properties │ └── webapp │ │ ├── WEB-INF │ │ ├── layouts │ │ │ └── default.jsp │ │ ├── tags │ │ │ └── pagination.tag │ │ ├── tiles.xml │ │ └── tiles │ │ │ ├── about.jsp │ │ │ ├── addstatus.jsp │ │ │ ├── editstatus.jsp │ │ │ ├── home.jsp │ │ │ ├── login.jsp │ │ │ └── viewstatus.jsp │ │ ├── css │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ └── main.css │ │ └── js │ │ └── bootstrap.min.js │ └── test │ └── java │ └── com │ └── caveofprogramming │ └── tests │ └── StatusTest.java ├── spring-boot-tutorial-deleting ├── .gitignore ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── caveofprogramming │ │ │ ├── App.java │ │ │ ├── controllers │ │ │ ├── AuthController.java │ │ │ ├── PageController.java │ │ │ └── StatusUpdateController.java │ │ │ ├── model │ │ │ ├── StatusUpdate.java │ │ │ └── StatusUpdateDao.java │ │ │ └── service │ │ │ └── StatusUpdateService.java │ ├── resources │ │ ├── ValidationMessages.properties │ │ └── application.properties │ └── webapp │ │ ├── WEB-INF │ │ ├── layouts │ │ │ └── default.jsp │ │ ├── tags │ │ │ └── pagination.tag │ │ ├── tiles.xml │ │ └── tiles │ │ │ ├── about.jsp │ │ │ ├── addstatus.jsp │ │ │ ├── home.jsp │ │ │ └── viewstatus.jsp │ │ ├── css │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ └── main.css │ │ └── js │ │ └── bootstrap.min.js │ └── test │ └── java │ └── com │ └── caveofprogramming │ └── tests │ └── StatusTest.java ├── spring-boot-tutorial-displaying-data ├── .gitignore ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── caveofprogramming │ │ │ ├── App.java │ │ │ ├── controllers │ │ │ ├── AuthController.java │ │ │ └── PageController.java │ │ │ ├── model │ │ │ ├── StatusUpdate.java │ │ │ └── StatusUpdateDao.java │ │ │ └── service │ │ │ └── StatusUpdateService.java │ ├── resources │ │ └── application.properties │ └── webapp │ │ ├── WEB-INF │ │ ├── layouts │ │ │ └── default.jsp │ │ ├── tiles.xml │ │ └── tiles │ │ │ ├── about.jsp │ │ │ ├── addstatus.jsp │ │ │ └── home.jsp │ │ ├── css │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ └── main.css │ │ └── js │ │ └── bootstrap.min.js │ └── test │ └── java │ └── com │ └── caveofprogramming │ └── tests │ └── StatusTest.java ├── spring-boot-tutorial-domain-objects ├── .gitignore ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── caveofprogramming │ │ │ ├── App.java │ │ │ ├── controllers │ │ │ ├── AuthController.java │ │ │ └── PageController.java │ │ │ └── model │ │ │ └── StatusUpdate.java │ ├── resources │ │ └── application.properties │ └── webapp │ │ ├── WEB-INF │ │ ├── layouts │ │ │ └── default.jsp │ │ ├── tiles.xml │ │ └── tiles │ │ │ ├── about.jsp │ │ │ ├── addstatus.jsp │ │ │ └── home.jsp │ │ ├── css │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ └── main.css │ │ └── js │ │ └── bootstrap.min.js │ └── test │ └── java │ └── com │ └── caveofprogramming │ └── tests │ └── StatusTest.java ├── spring-boot-tutorial-edit-delete-links ├── .gitignore ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── caveofprogramming │ │ │ ├── App.java │ │ │ ├── controllers │ │ │ ├── AuthController.java │ │ │ ├── PageController.java │ │ │ └── StatusUpdateController.java │ │ │ ├── model │ │ │ ├── StatusUpdate.java │ │ │ └── StatusUpdateDao.java │ │ │ └── service │ │ │ └── StatusUpdateService.java │ ├── resources │ │ ├── ValidationMessages.properties │ │ └── application.properties │ └── webapp │ │ ├── WEB-INF │ │ ├── layouts │ │ │ └── default.jsp │ │ ├── tags │ │ │ └── pagination.tag │ │ ├── tiles.xml │ │ └── tiles │ │ │ ├── about.jsp │ │ │ ├── addstatus.jsp │ │ │ ├── home.jsp │ │ │ └── viewstatus.jsp │ │ ├── css │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ └── main.css │ │ └── js │ │ └── bootstrap.min.js │ └── test │ └── java │ └── com │ └── caveofprogramming │ └── tests │ └── StatusTest.java ├── spring-boot-tutorial-editing ├── .gitignore ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── caveofprogramming │ │ │ ├── App.java │ │ │ ├── controllers │ │ │ ├── AuthController.java │ │ │ ├── PageController.java │ │ │ └── StatusUpdateController.java │ │ │ ├── model │ │ │ ├── StatusUpdate.java │ │ │ └── StatusUpdateDao.java │ │ │ └── service │ │ │ └── StatusUpdateService.java │ ├── resources │ │ ├── ValidationMessages.properties │ │ └── application.properties │ └── webapp │ │ ├── WEB-INF │ │ ├── layouts │ │ │ └── default.jsp │ │ ├── tags │ │ │ └── pagination.tag │ │ ├── tiles.xml │ │ └── tiles │ │ │ ├── about.jsp │ │ │ ├── addstatus.jsp │ │ │ ├── editstatus.jsp │ │ │ ├── home.jsp │ │ │ └── viewstatus.jsp │ │ ├── css │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ └── main.css │ │ └── js │ │ └── bootstrap.min.js │ └── test │ └── java │ └── com │ └── caveofprogramming │ └── tests │ └── StatusTest.java ├── spring-boot-tutorial-email-validation ├── .gitignore ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── caveofprogramming │ │ │ ├── App.java │ │ │ ├── controllers │ │ │ ├── AuthController.java │ │ │ ├── PageController.java │ │ │ └── StatusUpdateController.java │ │ │ ├── model │ │ │ ├── SiteUser.java │ │ │ ├── StatusUpdate.java │ │ │ ├── StatusUpdateDao.java │ │ │ └── UserDao.java │ │ │ ├── security │ │ │ └── WebSecurityConfig.java │ │ │ └── service │ │ │ ├── StatusUpdateService.java │ │ │ └── UserService.java │ ├── resources │ │ ├── ValidationMessages.properties │ │ └── application.properties │ └── webapp │ │ ├── WEB-INF │ │ ├── layouts │ │ │ └── default.jsp │ │ ├── tags │ │ │ └── pagination.tag │ │ ├── tiles.xml │ │ └── tiles │ │ │ ├── about.jsp │ │ │ ├── addstatus.jsp │ │ │ ├── editstatus.jsp │ │ │ ├── home.jsp │ │ │ ├── login.jsp │ │ │ ├── register.jsp │ │ │ └── viewstatus.jsp │ │ ├── css │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ └── main.css │ │ └── js │ │ └── bootstrap.min.js │ └── test │ └── java │ └── com │ └── caveofprogramming │ └── tests │ └── StatusTest.java ├── spring-boot-tutorial-finding-by-order ├── .gitignore ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── caveofprogramming │ │ │ ├── App.java │ │ │ ├── controllers │ │ │ ├── AuthController.java │ │ │ └── PageController.java │ │ │ └── model │ │ │ ├── StatusUpdate.java │ │ │ └── StatusUpdateDao.java │ ├── resources │ │ └── application.properties │ └── webapp │ │ ├── WEB-INF │ │ ├── layouts │ │ │ └── default.jsp │ │ ├── tiles.xml │ │ └── tiles │ │ │ ├── about.jsp │ │ │ ├── addstatus.jsp │ │ │ └── home.jsp │ │ ├── css │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ └── main.css │ │ └── js │ │ └── bootstrap.min.js │ └── test │ └── java │ └── com │ └── caveofprogramming │ └── tests │ └── StatusTest.java ├── spring-boot-tutorial-form-validation ├── .gitignore ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── caveofprogramming │ │ │ ├── App.java │ │ │ ├── controllers │ │ │ ├── AuthController.java │ │ │ └── PageController.java │ │ │ ├── model │ │ │ ├── StatusUpdate.java │ │ │ └── StatusUpdateDao.java │ │ │ └── service │ │ │ └── StatusUpdateService.java │ ├── resources │ │ └── application.properties │ └── webapp │ │ ├── WEB-INF │ │ ├── layouts │ │ │ └── default.jsp │ │ ├── tiles.xml │ │ └── tiles │ │ │ ├── about.jsp │ │ │ ├── addstatus.jsp │ │ │ └── home.jsp │ │ ├── css │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ └── main.css │ │ └── js │ │ └── bootstrap.min.js │ └── test │ └── java │ └── com │ └── caveofprogramming │ └── tests │ └── StatusTest.java ├── spring-boot-tutorial-formatting-dates ├── .gitignore ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── caveofprogramming │ │ │ ├── App.java │ │ │ ├── controllers │ │ │ ├── AuthController.java │ │ │ └── PageController.java │ │ │ ├── model │ │ │ ├── StatusUpdate.java │ │ │ └── StatusUpdateDao.java │ │ │ └── service │ │ │ └── StatusUpdateService.java │ ├── resources │ │ └── application.properties │ └── webapp │ │ ├── WEB-INF │ │ ├── layouts │ │ │ └── default.jsp │ │ ├── tiles.xml │ │ └── tiles │ │ │ ├── about.jsp │ │ │ ├── addstatus.jsp │ │ │ └── home.jsp │ │ ├── css │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ └── main.css │ │ └── js │ │ └── bootstrap.min.js │ └── test │ └── java │ └── com │ └── caveofprogramming │ └── tests │ └── StatusTest.java ├── spring-boot-tutorial-handling-errors ├── .gitignore ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── caveofprogramming │ │ │ ├── App.java │ │ │ ├── configuration │ │ │ ├── MailConfig.java │ │ │ └── WebSecurityConfig.java │ │ │ ├── controllers │ │ │ ├── AuthController.java │ │ │ ├── GlobalExceptionHandler.java │ │ │ ├── PageController.java │ │ │ └── StatusUpdateController.java │ │ │ ├── model │ │ │ ├── SiteUser.java │ │ │ ├── StatusUpdate.java │ │ │ ├── StatusUpdateDao.java │ │ │ ├── TokenType.java │ │ │ ├── UserDao.java │ │ │ ├── VerificationDao.java │ │ │ └── VerificationToken.java │ │ │ ├── service │ │ │ ├── EmailService.java │ │ │ ├── StatusUpdateService.java │ │ │ └── UserService.java │ │ │ ├── validation │ │ │ ├── PasswordMatch.java │ │ │ └── PasswordMatchValidator.java │ │ │ └── velocity │ │ │ └── verifyemail.vm │ ├── resources │ │ ├── ValidationMessages.properties │ │ └── application.properties │ └── webapp │ │ ├── WEB-INF │ │ ├── layouts │ │ │ └── default.jsp │ │ ├── tags │ │ │ └── pagination.tag │ │ ├── tiles.xml │ │ └── tiles │ │ │ ├── about.jsp │ │ │ ├── addstatus.jsp │ │ │ ├── editstatus.jsp │ │ │ ├── exception.jsp │ │ │ ├── home.jsp │ │ │ ├── login.jsp │ │ │ ├── message.jsp │ │ │ ├── register.jsp │ │ │ ├── verifyemail.jsp │ │ │ └── viewstatus.jsp │ │ ├── css │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ └── main.css │ │ └── js │ │ └── bootstrap.min.js │ └── test │ └── java │ └── com │ └── caveofprogramming │ └── tests │ └── StatusTest.java ├── spring-boot-tutorial-improving-the-app ├── .gitignore ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── caveofprogramming │ │ │ ├── App.java │ │ │ ├── controllers │ │ │ ├── AuthController.java │ │ │ ├── PageController.java │ │ │ └── StatusUpdateController.java │ │ │ ├── model │ │ │ ├── StatusUpdate.java │ │ │ └── StatusUpdateDao.java │ │ │ └── service │ │ │ └── StatusUpdateService.java │ ├── resources │ │ ├── ValidationMessages.properties │ │ └── application.properties │ └── webapp │ │ ├── WEB-INF │ │ ├── layouts │ │ │ └── default.jsp │ │ ├── tags │ │ │ └── pagination.tag │ │ ├── tiles.xml │ │ └── tiles │ │ │ ├── about.jsp │ │ │ ├── addstatus.jsp │ │ │ ├── home.jsp │ │ │ └── viewstatus.jsp │ │ ├── css │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ └── main.css │ │ └── js │ │ └── bootstrap.min.js │ └── test │ └── java │ └── com │ └── caveofprogramming │ └── tests │ └── StatusTest.java ├── spring-boot-tutorial-interests ├── .gitignore ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── caveofprogramming │ │ │ ├── App.java │ │ │ ├── configuration │ │ │ ├── MailConfig.java │ │ │ └── WebSecurityConfig.java │ │ │ ├── controllers │ │ │ ├── AuthController.java │ │ │ ├── GlobalExceptionHandler.java │ │ │ ├── PageController.java │ │ │ ├── ProfileController.java │ │ │ └── StatusUpdateController.java │ │ │ ├── exceptions │ │ │ ├── ImageTooSmallException.java │ │ │ └── InvalidFileException.java │ │ │ ├── model │ │ │ ├── FileInfo.java │ │ │ ├── Interest.java │ │ │ ├── InterestDao.java │ │ │ ├── Profile.java │ │ │ ├── ProfileDao.java │ │ │ ├── SiteUser.java │ │ │ ├── StatusUpdate.java │ │ │ ├── StatusUpdateDao.java │ │ │ ├── TokenType.java │ │ │ ├── UserDao.java │ │ │ ├── VerificationDao.java │ │ │ └── VerificationToken.java │ │ │ ├── service │ │ │ ├── EmailService.java │ │ │ ├── FileService.java │ │ │ ├── InterestService.java │ │ │ ├── ProfileService.java │ │ │ ├── StatusUpdateService.java │ │ │ └── UserService.java │ │ │ ├── status │ │ │ └── PhotoUploadStatus.java │ │ │ ├── validation │ │ │ ├── PasswordMatch.java │ │ │ └── PasswordMatchValidator.java │ │ │ └── velocity │ │ │ └── verifyemail.vm │ ├── resources │ │ ├── ValidationMessages.properties │ │ └── application.properties │ └── webapp │ │ ├── WEB-INF │ │ ├── layouts │ │ │ └── default.jsp │ │ ├── tags │ │ │ └── pagination.tag │ │ ├── tiles.xml │ │ └── tiles │ │ │ ├── about.jsp │ │ │ ├── addstatus.jsp │ │ │ ├── editprofileabout.jsp │ │ │ ├── editstatus.jsp │ │ │ ├── exception.jsp │ │ │ ├── home.jsp │ │ │ ├── login.jsp │ │ │ ├── message.jsp │ │ │ ├── profile.jsp │ │ │ ├── register.jsp │ │ │ ├── verifyemail.jsp │ │ │ └── viewstatus.jsp │ │ ├── css │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ ├── jquery.tagit.css │ │ └── main.css │ │ ├── img │ │ └── avatar.jpg │ │ └── js │ │ ├── bootstrap.min.js │ │ ├── jquery-ui.min.js │ │ └── tag-it.min.js │ └── test │ └── java │ └── com │ └── caveofprogramming │ └── tests │ ├── FileServiceTest.java │ ├── ProfileControllerRestTest.java │ ├── ProfileTest.java │ └── StatusTest.java ├── spring-boot-tutorial-jsps ├── .gitignore ├── pom.xml └── src │ └── main │ ├── java │ └── com │ │ └── caveofprogramming │ │ └── App.java │ ├── resources │ └── application.properties │ └── webapp │ └── WEB-INF │ └── jsps │ └── home.jsp ├── spring-boot-tutorial-junit ├── .gitignore ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── caveofprogramming │ │ │ ├── App.java │ │ │ └── controllers │ │ │ ├── AuthController.java │ │ │ └── PageController.java │ ├── resources │ │ └── application.properties │ └── webapp │ │ ├── WEB-INF │ │ ├── layouts │ │ │ └── default.jsp │ │ ├── tiles.xml │ │ └── tiles │ │ │ ├── about.jsp │ │ │ ├── addstatus.jsp │ │ │ └── home.jsp │ │ ├── css │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ └── main.css │ │ └── js │ │ └── bootstrap.min.js │ └── test │ └── java │ └── com │ └── caveofprogramming │ └── tests │ └── StatusTest.java ├── spring-boot-tutorial-logging-out ├── .gitignore ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── caveofprogramming │ │ │ ├── App.java │ │ │ ├── controllers │ │ │ ├── AuthController.java │ │ │ ├── PageController.java │ │ │ └── StatusUpdateController.java │ │ │ ├── model │ │ │ ├── StatusUpdate.java │ │ │ └── StatusUpdateDao.java │ │ │ ├── security │ │ │ └── WebSecurityConfig.java │ │ │ └── service │ │ │ └── StatusUpdateService.java │ ├── resources │ │ ├── ValidationMessages.properties │ │ └── application.properties │ └── webapp │ │ ├── WEB-INF │ │ ├── layouts │ │ │ └── default.jsp │ │ ├── tags │ │ │ └── pagination.tag │ │ ├── tiles.xml │ │ └── tiles │ │ │ ├── about.jsp │ │ │ ├── addstatus.jsp │ │ │ ├── editstatus.jsp │ │ │ ├── home.jsp │ │ │ ├── login.jsp │ │ │ └── viewstatus.jsp │ │ ├── css │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ └── main.css │ │ └── js │ │ └── bootstrap.min.js │ └── test │ └── java │ └── com │ └── caveofprogramming │ └── tests │ └── StatusTest.java ├── spring-boot-tutorial-login-forms ├── .gitignore ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── caveofprogramming │ │ │ ├── App.java │ │ │ ├── controllers │ │ │ ├── AuthController.java │ │ │ ├── PageController.java │ │ │ └── StatusUpdateController.java │ │ │ ├── model │ │ │ ├── StatusUpdate.java │ │ │ └── StatusUpdateDao.java │ │ │ ├── security │ │ │ └── WebSecurityConfig.java │ │ │ └── service │ │ │ └── StatusUpdateService.java │ ├── resources │ │ ├── ValidationMessages.properties │ │ └── application.properties │ └── webapp │ │ ├── WEB-INF │ │ ├── layouts │ │ │ └── default.jsp │ │ ├── tags │ │ │ └── pagination.tag │ │ ├── tiles.xml │ │ └── tiles │ │ │ ├── about.jsp │ │ │ ├── addstatus.jsp │ │ │ ├── editstatus.jsp │ │ │ ├── home.jsp │ │ │ ├── login.jsp │ │ │ └── viewstatus.jsp │ │ ├── css │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ └── main.css │ │ └── js │ │ └── bootstrap.min.js │ └── test │ └── java │ └── com │ └── caveofprogramming │ └── tests │ └── StatusTest.java ├── spring-boot-tutorial-model-and-view ├── .gitignore ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── caveofprogramming │ │ │ ├── App.java │ │ │ ├── controllers │ │ │ ├── AuthController.java │ │ │ └── PageController.java │ │ │ ├── model │ │ │ ├── StatusUpdate.java │ │ │ └── StatusUpdateDao.java │ │ │ └── service │ │ │ └── StatusUpdateService.java │ ├── resources │ │ └── application.properties │ └── webapp │ │ ├── WEB-INF │ │ ├── layouts │ │ │ └── default.jsp │ │ ├── tiles.xml │ │ └── tiles │ │ │ ├── about.jsp │ │ │ ├── addstatus.jsp │ │ │ └── home.jsp │ │ ├── css │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ └── main.css │ │ └── js │ │ └── bootstrap.min.js │ └── test │ └── java │ └── com │ └── caveofprogramming │ └── tests │ └── StatusTest.java ├── spring-boot-tutorial-model-attributes ├── .gitignore ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── caveofprogramming │ │ │ ├── App.java │ │ │ ├── controllers │ │ │ ├── AuthController.java │ │ │ └── PageController.java │ │ │ ├── model │ │ │ ├── StatusUpdate.java │ │ │ └── StatusUpdateDao.java │ │ │ └── service │ │ │ └── StatusUpdateService.java │ ├── resources │ │ └── application.properties │ └── webapp │ │ ├── WEB-INF │ │ ├── layouts │ │ │ └── default.jsp │ │ ├── tiles.xml │ │ └── tiles │ │ │ ├── about.jsp │ │ │ ├── addstatus.jsp │ │ │ └── home.jsp │ │ ├── css │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ └── main.css │ │ └── js │ │ └── bootstrap.min.js │ └── test │ └── java │ └── com │ └── caveofprogramming │ └── tests │ └── StatusTest.java ├── spring-boot-tutorial-multiple-controllers ├── .gitignore ├── pom.xml └── src │ └── main │ ├── java │ └── com │ │ └── caveofprogramming │ │ ├── App.java │ │ └── controllers │ │ ├── AuthController.java │ │ └── PageController.java │ ├── resources │ └── application.properties │ └── webapp │ └── WEB-INF │ └── jsps │ ├── about.jsp │ ├── admin.jsp │ └── home.jsp ├── spring-boot-tutorial-navbar ├── .gitignore ├── pom.xml └── src │ └── main │ ├── java │ └── com │ │ └── caveofprogramming │ │ ├── App.java │ │ └── controllers │ │ ├── AuthController.java │ │ └── PageController.java │ ├── resources │ └── application.properties │ └── webapp │ ├── WEB-INF │ ├── layouts │ │ └── default.jsp │ ├── tiles.xml │ └── tiles │ │ ├── about.jsp │ │ └── home.jsp │ ├── css │ ├── bootstrap.min.css │ └── bootstrap.min.css.map │ └── js │ └── bootstrap.min.js ├── spring-boot-tutorial-page-number-blocks ├── .gitignore ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── caveofprogramming │ │ │ ├── App.java │ │ │ ├── controllers │ │ │ ├── AuthController.java │ │ │ └── PageController.java │ │ │ ├── model │ │ │ ├── StatusUpdate.java │ │ │ └── StatusUpdateDao.java │ │ │ └── service │ │ │ └── StatusUpdateService.java │ ├── resources │ │ ├── ValidationMessages.properties │ │ └── application.properties │ └── webapp │ │ ├── WEB-INF │ │ ├── layouts │ │ │ └── default.jsp │ │ ├── tags │ │ │ └── pagination.tag │ │ ├── tiles.xml │ │ └── tiles │ │ │ ├── about.jsp │ │ │ ├── addstatus.jsp │ │ │ ├── home.jsp │ │ │ └── viewstatus.jsp │ │ ├── css │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ └── main.css │ │ └── js │ │ └── bootstrap.min.js │ └── test │ └── java │ └── com │ └── caveofprogramming │ └── tests │ └── StatusTest.java ├── spring-boot-tutorial-page-numbers ├── .gitignore ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── caveofprogramming │ │ │ ├── App.java │ │ │ ├── controllers │ │ │ ├── AuthController.java │ │ │ └── PageController.java │ │ │ ├── model │ │ │ ├── StatusUpdate.java │ │ │ └── StatusUpdateDao.java │ │ │ └── service │ │ │ └── StatusUpdateService.java │ ├── resources │ │ ├── ValidationMessages.properties │ │ └── application.properties │ └── webapp │ │ ├── WEB-INF │ │ ├── layouts │ │ │ └── default.jsp │ │ ├── tiles.xml │ │ └── tiles │ │ │ ├── about.jsp │ │ │ ├── addstatus.jsp │ │ │ ├── home.jsp │ │ │ └── viewstatus.jsp │ │ ├── css │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ └── main.css │ │ └── js │ │ └── bootstrap.min.js │ └── test │ └── java │ └── com │ └── caveofprogramming │ └── tests │ └── StatusTest.java ├── spring-boot-tutorial-paging-and-sorting ├── .gitignore ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── caveofprogramming │ │ │ ├── App.java │ │ │ ├── controllers │ │ │ ├── AuthController.java │ │ │ └── PageController.java │ │ │ ├── model │ │ │ ├── StatusUpdate.java │ │ │ └── StatusUpdateDao.java │ │ │ └── service │ │ │ └── StatusUpdateService.java │ ├── resources │ │ ├── ValidationMessages.properties │ │ └── application.properties │ └── webapp │ │ ├── WEB-INF │ │ ├── layouts │ │ │ └── default.jsp │ │ ├── tiles.xml │ │ └── tiles │ │ │ ├── about.jsp │ │ │ ├── addstatus.jsp │ │ │ ├── home.jsp │ │ │ └── viewstatus.jsp │ │ ├── css │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ └── main.css │ │ └── js │ │ └── bootstrap.min.js │ └── test │ └── java │ └── com │ └── caveofprogramming │ └── tests │ └── StatusTest.java ├── spring-boot-tutorial-password-encryption ├── .gitignore ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── caveofprogramming │ │ │ ├── App.java │ │ │ ├── controllers │ │ │ ├── AuthController.java │ │ │ ├── PageController.java │ │ │ └── StatusUpdateController.java │ │ │ ├── model │ │ │ ├── SiteUser.java │ │ │ ├── StatusUpdate.java │ │ │ ├── StatusUpdateDao.java │ │ │ └── UserDao.java │ │ │ ├── security │ │ │ └── WebSecurityConfig.java │ │ │ └── service │ │ │ ├── StatusUpdateService.java │ │ │ └── UserService.java │ ├── resources │ │ ├── ValidationMessages.properties │ │ └── application.properties │ └── webapp │ │ ├── WEB-INF │ │ ├── layouts │ │ │ └── default.jsp │ │ ├── tags │ │ │ └── pagination.tag │ │ ├── tiles.xml │ │ └── tiles │ │ │ ├── about.jsp │ │ │ ├── addstatus.jsp │ │ │ ├── editstatus.jsp │ │ │ ├── home.jsp │ │ │ ├── login.jsp │ │ │ ├── register.jsp │ │ │ └── viewstatus.jsp │ │ ├── css │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ └── main.css │ │ └── js │ │ └── bootstrap.min.js │ └── test │ └── java │ └── com │ └── caveofprogramming │ └── tests │ └── StatusTest.java ├── spring-boot-tutorial-profiles ├── .gitignore ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── caveofprogramming │ │ │ ├── App.java │ │ │ ├── configuration │ │ │ ├── MailConfig.java │ │ │ └── WebSecurityConfig.java │ │ │ ├── controllers │ │ │ ├── AuthController.java │ │ │ ├── GlobalExceptionHandler.java │ │ │ ├── PageController.java │ │ │ ├── ProfileController.java │ │ │ └── StatusUpdateController.java │ │ │ ├── model │ │ │ ├── Profile.java │ │ │ ├── ProfileDao.java │ │ │ ├── SiteUser.java │ │ │ ├── StatusUpdate.java │ │ │ ├── StatusUpdateDao.java │ │ │ ├── TokenType.java │ │ │ ├── UserDao.java │ │ │ ├── VerificationDao.java │ │ │ └── VerificationToken.java │ │ │ ├── service │ │ │ ├── EmailService.java │ │ │ ├── ProfileService.java │ │ │ ├── StatusUpdateService.java │ │ │ └── UserService.java │ │ │ ├── validation │ │ │ ├── PasswordMatch.java │ │ │ └── PasswordMatchValidator.java │ │ │ └── velocity │ │ │ └── verifyemail.vm │ ├── resources │ │ ├── ValidationMessages.properties │ │ └── application.properties │ └── webapp │ │ ├── WEB-INF │ │ ├── layouts │ │ │ └── default.jsp │ │ ├── tags │ │ │ └── pagination.tag │ │ ├── tiles.xml │ │ └── tiles │ │ │ ├── about.jsp │ │ │ ├── addstatus.jsp │ │ │ ├── editprofileabout.jsp │ │ │ ├── editstatus.jsp │ │ │ ├── exception.jsp │ │ │ ├── home.jsp │ │ │ ├── login.jsp │ │ │ ├── message.jsp │ │ │ ├── profile.jsp │ │ │ ├── register.jsp │ │ │ ├── verifyemail.jsp │ │ │ └── viewstatus.jsp │ │ ├── css │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ └── main.css │ │ ├── img │ │ └── avatar.jpg │ │ └── js │ │ └── bootstrap.min.js │ └── test │ └── java │ └── com │ └── caveofprogramming │ └── tests │ └── StatusTest.java ├── spring-boot-tutorial-registration-form ├── .gitignore ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── caveofprogramming │ │ │ ├── App.java │ │ │ ├── controllers │ │ │ ├── AuthController.java │ │ │ ├── PageController.java │ │ │ └── StatusUpdateController.java │ │ │ ├── model │ │ │ ├── SiteUser.java │ │ │ ├── StatusUpdate.java │ │ │ ├── StatusUpdateDao.java │ │ │ └── UserDao.java │ │ │ ├── security │ │ │ └── WebSecurityConfig.java │ │ │ └── service │ │ │ ├── StatusUpdateService.java │ │ │ └── UserService.java │ ├── resources │ │ ├── ValidationMessages.properties │ │ └── application.properties │ └── webapp │ │ ├── WEB-INF │ │ ├── layouts │ │ │ └── default.jsp │ │ ├── tags │ │ │ └── pagination.tag │ │ ├── tiles.xml │ │ └── tiles │ │ │ ├── about.jsp │ │ │ ├── addstatus.jsp │ │ │ ├── editstatus.jsp │ │ │ ├── home.jsp │ │ │ ├── login.jsp │ │ │ ├── register.jsp │ │ │ └── viewstatus.jsp │ │ ├── css │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ └── main.css │ │ └── js │ │ └── bootstrap.min.js │ └── test │ └── java │ └── com │ └── caveofprogramming │ └── tests │ └── StatusTest.java ├── spring-boot-tutorial-request-parameters ├── .gitignore ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── caveofprogramming │ │ │ ├── App.java │ │ │ ├── controllers │ │ │ ├── AuthController.java │ │ │ └── PageController.java │ │ │ ├── model │ │ │ ├── StatusUpdate.java │ │ │ └── StatusUpdateDao.java │ │ │ └── service │ │ │ └── StatusUpdateService.java │ ├── resources │ │ ├── ValidationMessages.properties │ │ └── application.properties │ └── webapp │ │ ├── WEB-INF │ │ ├── layouts │ │ │ └── default.jsp │ │ ├── tiles.xml │ │ └── tiles │ │ │ ├── about.jsp │ │ │ ├── addstatus.jsp │ │ │ ├── home.jsp │ │ │ └── viewstatus.jsp │ │ ├── css │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ └── main.css │ │ └── js │ │ └── bootstrap.min.js │ └── test │ └── java │ └── com │ └── caveofprogramming │ └── tests │ └── StatusTest.java ├── spring-boot-tutorial-roles ├── .gitignore ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── caveofprogramming │ │ │ ├── App.java │ │ │ ├── controllers │ │ │ ├── AuthController.java │ │ │ ├── PageController.java │ │ │ └── StatusUpdateController.java │ │ │ ├── model │ │ │ ├── SiteUser.java │ │ │ ├── StatusUpdate.java │ │ │ ├── StatusUpdateDao.java │ │ │ └── UserDao.java │ │ │ ├── security │ │ │ └── WebSecurityConfig.java │ │ │ └── service │ │ │ ├── StatusUpdateService.java │ │ │ └── UserService.java │ ├── resources │ │ ├── ValidationMessages.properties │ │ └── application.properties │ └── webapp │ │ ├── WEB-INF │ │ ├── layouts │ │ │ └── default.jsp │ │ ├── tags │ │ │ └── pagination.tag │ │ ├── tiles.xml │ │ └── tiles │ │ │ ├── about.jsp │ │ │ ├── addstatus.jsp │ │ │ ├── editstatus.jsp │ │ │ ├── home.jsp │ │ │ ├── login.jsp │ │ │ ├── register.jsp │ │ │ └── viewstatus.jsp │ │ ├── css │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ └── main.css │ │ └── js │ │ └── bootstrap.min.js │ └── test │ └── java │ └── com │ └── caveofprogramming │ └── tests │ └── StatusTest.java ├── spring-boot-tutorial-saving-edits ├── .gitignore ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── caveofprogramming │ │ │ ├── App.java │ │ │ ├── controllers │ │ │ ├── AuthController.java │ │ │ ├── PageController.java │ │ │ └── StatusUpdateController.java │ │ │ ├── model │ │ │ ├── StatusUpdate.java │ │ │ └── StatusUpdateDao.java │ │ │ └── service │ │ │ └── StatusUpdateService.java │ ├── resources │ │ ├── ValidationMessages.properties │ │ └── application.properties │ └── webapp │ │ ├── WEB-INF │ │ ├── layouts │ │ │ └── default.jsp │ │ ├── tags │ │ │ └── pagination.tag │ │ ├── tiles.xml │ │ └── tiles │ │ │ ├── about.jsp │ │ │ ├── addstatus.jsp │ │ │ ├── editstatus.jsp │ │ │ ├── home.jsp │ │ │ └── viewstatus.jsp │ │ ├── css │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ └── main.css │ │ └── js │ │ └── bootstrap.min.js │ └── test │ └── java │ └── com │ └── caveofprogramming │ └── tests │ └── StatusTest.java ├── spring-boot-tutorial-search-upgraded-temp ├── .gitignore ├── .project ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── caveofprogramming │ │ │ ├── App.java │ │ │ ├── configuration │ │ │ ├── MailConfig.java │ │ │ └── WebSecurityConfig.java │ │ │ ├── controllers │ │ │ ├── AuthController.java │ │ │ ├── GlobalExceptionHandler.java │ │ │ ├── PageController.java │ │ │ ├── ProfileController.java │ │ │ ├── SearchController.java │ │ │ └── StatusUpdateController.java │ │ │ ├── exceptions │ │ │ ├── ImageTooSmallException.java │ │ │ └── InvalidFileException.java │ │ │ ├── model │ │ │ ├── dto │ │ │ │ ├── FileInfo.java │ │ │ │ └── SearchResult.java │ │ │ ├── entity │ │ │ │ ├── Interest.java │ │ │ │ ├── Profile.java │ │ │ │ ├── SiteUser.java │ │ │ │ ├── StatusUpdate.java │ │ │ │ ├── TokenType.java │ │ │ │ └── VerificationToken.java │ │ │ └── repository │ │ │ │ ├── InterestDao.java │ │ │ │ ├── ProfileDao.java │ │ │ │ ├── StatusUpdateDao.java │ │ │ │ ├── UserDao.java │ │ │ │ └── VerificationDao.java │ │ │ ├── service │ │ │ ├── EmailService.java │ │ │ ├── FileService.java │ │ │ ├── InterestService.java │ │ │ ├── ProfileService.java │ │ │ ├── SearchService.java │ │ │ ├── StatusUpdateService.java │ │ │ └── UserService.java │ │ │ ├── status │ │ │ └── PhotoUploadStatus.java │ │ │ ├── validation │ │ │ ├── PasswordMatch.java │ │ │ └── PasswordMatchValidator.java │ │ │ └── velocity │ │ │ └── verifyemail.vm │ ├── resources │ │ ├── ValidationMessages.properties │ │ ├── application.properties │ │ ├── mail │ │ │ └── verifyemail.html │ │ └── test.properties │ └── webapp │ │ ├── WEB-INF │ │ ├── layouts │ │ │ └── default.jsp │ │ ├── tags │ │ │ └── pagination.tag │ │ ├── tiles.xml │ │ └── tiles │ │ │ ├── about.jsp │ │ │ ├── addstatus.jsp │ │ │ ├── editprofileabout.jsp │ │ │ ├── editstatus.jsp │ │ │ ├── exception.jsp │ │ │ ├── home.jsp │ │ │ ├── login.jsp │ │ │ ├── message.jsp │ │ │ ├── profile.jsp │ │ │ ├── register.jsp │ │ │ ├── results.jsp │ │ │ ├── verifyemail.jsp │ │ │ └── viewstatus.jsp │ │ ├── css │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ ├── jquery.tagit.css │ │ └── main.css │ │ ├── img │ │ └── avatar.jpg │ │ └── js │ │ ├── bootstrap.min.js │ │ ├── jquery-ui.min.js │ │ └── tag-it.min.js │ └── test │ └── java │ └── com │ └── caveofprogramming │ └── tests │ ├── BulkTests.java │ ├── FileServiceTest.java │ ├── ProfileControllerRestTest.java │ ├── ProfileTest.java │ ├── StatusTest.java │ └── data │ ├── hobbies.txt │ └── names.txt ├── spring-boot-tutorial-search ├── .gitignore ├── .project ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── caveofprogramming │ │ │ ├── App.java │ │ │ ├── configuration │ │ │ ├── MailConfig.java │ │ │ └── WebSecurityConfig.java │ │ │ ├── controllers │ │ │ ├── AuthController.java │ │ │ ├── GlobalExceptionHandler.java │ │ │ ├── PageController.java │ │ │ ├── ProfileController.java │ │ │ ├── SearchController.java │ │ │ └── StatusUpdateController.java │ │ │ ├── exceptions │ │ │ ├── ImageTooSmallException.java │ │ │ └── InvalidFileException.java │ │ │ ├── model │ │ │ ├── dto │ │ │ │ ├── FileInfo.java │ │ │ │ └── SearchResult.java │ │ │ ├── entity │ │ │ │ ├── Interest.java │ │ │ │ ├── Profile.java │ │ │ │ ├── SiteUser.java │ │ │ │ ├── StatusUpdate.java │ │ │ │ ├── TokenType.java │ │ │ │ └── VerificationToken.java │ │ │ └── repository │ │ │ │ ├── InterestDao.java │ │ │ │ ├── ProfileDao.java │ │ │ │ ├── StatusUpdateDao.java │ │ │ │ ├── UserDao.java │ │ │ │ └── VerificationDao.java │ │ │ ├── service │ │ │ ├── EmailService.java │ │ │ ├── FileService.java │ │ │ ├── InterestService.java │ │ │ ├── ProfileService.java │ │ │ ├── SearchService.java │ │ │ ├── StatusUpdateService.java │ │ │ └── UserService.java │ │ │ ├── status │ │ │ └── PhotoUploadStatus.java │ │ │ ├── validation │ │ │ ├── PasswordMatch.java │ │ │ └── PasswordMatchValidator.java │ │ │ └── velocity │ │ │ └── verifyemail.vm │ ├── resources │ │ ├── ValidationMessages.properties │ │ ├── application.properties │ │ └── mail │ │ │ └── verifyemail.html │ └── webapp │ │ ├── WEB-INF │ │ ├── layouts │ │ │ └── default.jsp │ │ ├── tags │ │ │ └── pagination.tag │ │ ├── tiles.xml │ │ └── tiles │ │ │ ├── about.jsp │ │ │ ├── addstatus.jsp │ │ │ ├── editprofileabout.jsp │ │ │ ├── editstatus.jsp │ │ │ ├── exception.jsp │ │ │ ├── home.jsp │ │ │ ├── login.jsp │ │ │ ├── message.jsp │ │ │ ├── profile.jsp │ │ │ ├── register.jsp │ │ │ ├── results.jsp │ │ │ ├── verifyemail.jsp │ │ │ └── viewstatus.jsp │ │ ├── css │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ ├── jquery.tagit.css │ │ └── main.css │ │ ├── img │ │ └── avatar.jpg │ │ └── js │ │ ├── bootstrap.min.js │ │ ├── jquery-ui.min.js │ │ └── tag-it.min.js │ └── test │ └── java │ └── com │ └── caveofprogramming │ └── tests │ ├── BulkTests.java │ ├── FileServiceTest.java │ ├── ProfileControllerRestTest.java │ ├── ProfileTest.java │ ├── StatusTest.java │ └── data │ ├── hobbies.txt │ └── names.txt ├── spring-boot-tutorial-security-rules ├── .gitignore ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── caveofprogramming │ │ │ ├── App.java │ │ │ ├── controllers │ │ │ ├── AuthController.java │ │ │ ├── PageController.java │ │ │ └── StatusUpdateController.java │ │ │ ├── model │ │ │ ├── StatusUpdate.java │ │ │ └── StatusUpdateDao.java │ │ │ ├── security │ │ │ └── WebSecurityConfig.java │ │ │ └── service │ │ │ └── StatusUpdateService.java │ ├── resources │ │ ├── ValidationMessages.properties │ │ └── application.properties │ └── webapp │ │ ├── WEB-INF │ │ ├── layouts │ │ │ └── default.jsp │ │ ├── tags │ │ │ └── pagination.tag │ │ ├── tiles.xml │ │ └── tiles │ │ │ ├── about.jsp │ │ │ ├── addstatus.jsp │ │ │ ├── editstatus.jsp │ │ │ ├── home.jsp │ │ │ └── viewstatus.jsp │ │ ├── css │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ └── main.css │ │ └── js │ │ └── bootstrap.min.js │ └── test │ └── java │ └── com │ └── caveofprogramming │ └── tests │ └── StatusTest.java ├── spring-boot-tutorial-security-tags ├── .gitignore ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── caveofprogramming │ │ │ ├── App.java │ │ │ ├── controllers │ │ │ ├── AuthController.java │ │ │ ├── PageController.java │ │ │ └── StatusUpdateController.java │ │ │ ├── model │ │ │ ├── StatusUpdate.java │ │ │ └── StatusUpdateDao.java │ │ │ ├── security │ │ │ └── WebSecurityConfig.java │ │ │ └── service │ │ │ └── StatusUpdateService.java │ ├── resources │ │ ├── ValidationMessages.properties │ │ └── application.properties │ └── webapp │ │ ├── WEB-INF │ │ ├── layouts │ │ │ └── default.jsp │ │ ├── tags │ │ │ └── pagination.tag │ │ ├── tiles.xml │ │ └── tiles │ │ │ ├── about.jsp │ │ │ ├── addstatus.jsp │ │ │ ├── editstatus.jsp │ │ │ ├── home.jsp │ │ │ ├── login.jsp │ │ │ └── viewstatus.jsp │ │ ├── css │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ └── main.css │ │ └── js │ │ └── bootstrap.min.js │ └── test │ └── java │ └── com │ └── caveofprogramming │ └── tests │ └── StatusTest.java ├── spring-boot-tutorial-sending-email ├── .gitignore ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── caveofprogramming │ │ │ ├── App.java │ │ │ ├── configuration │ │ │ ├── MailConfig.java │ │ │ └── WebSecurityConfig.java │ │ │ ├── controllers │ │ │ ├── AuthController.java │ │ │ ├── PageController.java │ │ │ └── StatusUpdateController.java │ │ │ ├── model │ │ │ ├── SiteUser.java │ │ │ ├── StatusUpdate.java │ │ │ ├── StatusUpdateDao.java │ │ │ └── UserDao.java │ │ │ ├── service │ │ │ ├── EmailService.java │ │ │ ├── StatusUpdateService.java │ │ │ └── UserService.java │ │ │ ├── validation │ │ │ ├── PasswordMatch.java │ │ │ └── PasswordMatchValidator.java │ │ │ └── velocity │ │ │ └── verifyemail.vm │ ├── resources │ │ ├── ValidationMessages.properties │ │ └── application.properties │ └── webapp │ │ ├── WEB-INF │ │ ├── layouts │ │ │ └── default.jsp │ │ ├── tags │ │ │ └── pagination.tag │ │ ├── tiles.xml │ │ └── tiles │ │ │ ├── about.jsp │ │ │ ├── addstatus.jsp │ │ │ ├── editstatus.jsp │ │ │ ├── home.jsp │ │ │ ├── login.jsp │ │ │ ├── register.jsp │ │ │ ├── verifyemail.jsp │ │ │ └── viewstatus.jsp │ │ ├── css │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ └── main.css │ │ └── js │ │ └── bootstrap.min.js │ └── test │ └── java │ └── com │ └── caveofprogramming │ └── tests │ └── StatusTest.java ├── spring-boot-tutorial-sending-messages ├── .classpath ├── .gitignore ├── .project ├── .settings │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.jdt.core.prefs │ ├── org.eclipse.m2e.core.prefs │ ├── org.eclipse.wst.common.component │ ├── org.eclipse.wst.common.project.facet.core.xml │ └── org.eclipse.wst.validation.prefs ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── caveofprogramming │ │ │ ├── App.java │ │ │ ├── configuration │ │ │ ├── MailConfig.java │ │ │ ├── WebSecurityConfig.java │ │ │ └── WebSocketConfig.java │ │ │ ├── controllers │ │ │ ├── AuthController.java │ │ │ ├── ChatController.java │ │ │ ├── GlobalExceptionHandler.java │ │ │ ├── PageController.java │ │ │ ├── ProfileController.java │ │ │ ├── SearchController.java │ │ │ ├── StatusUpdateController.java │ │ │ └── Util.java │ │ │ ├── exceptions │ │ │ ├── ImageTooSmallException.java │ │ │ └── InvalidFileException.java │ │ │ ├── model │ │ │ ├── dto │ │ │ │ ├── FileInfo.java │ │ │ │ └── SearchResult.java │ │ │ ├── entity │ │ │ │ ├── Interest.java │ │ │ │ ├── Profile.java │ │ │ │ ├── SiteUser.java │ │ │ │ ├── StatusUpdate.java │ │ │ │ ├── TokenType.java │ │ │ │ └── VerificationToken.java │ │ │ └── repository │ │ │ │ ├── InterestDao.java │ │ │ │ ├── ProfileDao.java │ │ │ │ ├── StatusUpdateDao.java │ │ │ │ ├── UserDao.java │ │ │ │ └── VerificationDao.java │ │ │ ├── service │ │ │ ├── EmailService.java │ │ │ ├── FileService.java │ │ │ ├── InterestService.java │ │ │ ├── ProfileService.java │ │ │ ├── SearchService.java │ │ │ ├── StatusUpdateService.java │ │ │ └── UserService.java │ │ │ ├── status │ │ │ └── PhotoUploadStatus.java │ │ │ ├── validation │ │ │ ├── PasswordMatch.java │ │ │ └── PasswordMatchValidator.java │ │ │ └── velocity │ │ │ └── verifyemail.vm │ ├── resources │ │ ├── ValidationMessages.properties │ │ ├── application.properties │ │ ├── mail │ │ │ └── verifyemail.html │ │ └── test.properties │ └── webapp │ │ ├── WEB-INF │ │ ├── layouts │ │ │ └── default.jsp │ │ ├── tags │ │ │ └── pagination.tag │ │ ├── tiles.xml │ │ └── tiles │ │ │ ├── about.jsp │ │ │ ├── addstatus.jsp │ │ │ ├── chatnotifications.jsp │ │ │ ├── chatview.jsp │ │ │ ├── chatviewscript.jsp │ │ │ ├── editprofileabout.jsp │ │ │ ├── editstatus.jsp │ │ │ ├── exception.jsp │ │ │ ├── home.jsp │ │ │ ├── login.jsp │ │ │ ├── message.jsp │ │ │ ├── profile.jsp │ │ │ ├── register.jsp │ │ │ ├── results.jsp │ │ │ ├── verifyemail.jsp │ │ │ └── viewstatus.jsp │ │ ├── css │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ ├── jquery.tagit.css │ │ └── main.css │ │ ├── img │ │ └── avatar.jpg │ │ └── js │ │ ├── bootstrap.min.js │ │ ├── jquery-ui.min.js │ │ └── tag-it.min.js │ └── test │ └── java │ └── com │ └── caveofprogramming │ └── tests │ ├── BulkTests.java │ ├── FileServiceTest.java │ ├── ProfileControllerRestTest.java │ ├── ProfileTest.java │ ├── StatusTest.java │ └── data │ ├── hobbies.txt │ └── names.txt ├── spring-boot-tutorial-service-layer ├── .gitignore ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── caveofprogramming │ │ │ ├── App.java │ │ │ ├── controllers │ │ │ ├── AuthController.java │ │ │ └── PageController.java │ │ │ ├── model │ │ │ ├── StatusUpdate.java │ │ │ └── StatusUpdateDao.java │ │ │ └── service │ │ │ └── StatusUpdateService.java │ ├── resources │ │ └── application.properties │ └── webapp │ │ ├── WEB-INF │ │ ├── layouts │ │ │ └── default.jsp │ │ ├── tiles.xml │ │ └── tiles │ │ │ ├── about.jsp │ │ │ ├── addstatus.jsp │ │ │ └── home.jsp │ │ ├── css │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ └── main.css │ │ └── js │ │ └── bootstrap.min.js │ └── test │ └── java │ └── com │ └── caveofprogramming │ └── tests │ └── StatusTest.java ├── spring-boot-tutorial-static-resources ├── .gitignore ├── pom.xml └── src │ └── main │ ├── java │ └── com │ │ └── caveofprogramming │ │ ├── App.java │ │ └── controllers │ │ ├── AuthController.java │ │ └── PageController.java │ ├── resources │ └── application.properties │ └── webapp │ ├── WEB-INF │ ├── layouts │ │ └── default.jsp │ ├── tiles.xml │ └── tiles │ │ ├── about.jsp │ │ └── home.jsp │ ├── css │ ├── bootstrap.min.css │ └── bootstrap.min.css.map │ └── js │ └── bootstrap.min.js ├── spring-boot-tutorial-styling-navbar ├── .gitignore ├── pom.xml └── src │ └── main │ ├── java │ └── com │ │ └── caveofprogramming │ │ ├── App.java │ │ └── controllers │ │ ├── AuthController.java │ │ └── PageController.java │ ├── resources │ └── application.properties │ └── webapp │ ├── WEB-INF │ ├── layouts │ │ └── default.jsp │ ├── tiles.xml │ └── tiles │ │ ├── about.jsp │ │ └── home.jsp │ ├── css │ ├── bootstrap.min.css │ ├── bootstrap.min.css.map │ └── main.css │ └── js │ └── bootstrap.min.js ├── spring-boot-tutorial-submitting-forms ├── .gitignore ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── caveofprogramming │ │ │ ├── App.java │ │ │ ├── controllers │ │ │ ├── AuthController.java │ │ │ └── PageController.java │ │ │ ├── model │ │ │ ├── StatusUpdate.java │ │ │ └── StatusUpdateDao.java │ │ │ └── service │ │ │ └── StatusUpdateService.java │ ├── resources │ │ └── application.properties │ └── webapp │ │ ├── WEB-INF │ │ ├── layouts │ │ │ └── default.jsp │ │ ├── tiles.xml │ │ └── tiles │ │ │ ├── about.jsp │ │ │ ├── addstatus.jsp │ │ │ └── home.jsp │ │ ├── css │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ └── main.css │ │ └── js │ │ └── bootstrap.min.js │ └── test │ └── java │ └── com │ └── caveofprogramming │ └── tests │ └── StatusTest.java ├── spring-boot-tutorial-thymeleaf ├── .gitignore ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── caveofprogramming │ │ │ ├── App.java │ │ │ ├── configuration │ │ │ ├── MailConfig.java │ │ │ └── WebSecurityConfig.java │ │ │ ├── controllers │ │ │ ├── AuthController.java │ │ │ ├── PageController.java │ │ │ └── StatusUpdateController.java │ │ │ ├── model │ │ │ ├── SiteUser.java │ │ │ ├── StatusUpdate.java │ │ │ ├── StatusUpdateDao.java │ │ │ └── UserDao.java │ │ │ ├── service │ │ │ ├── EmailService.java │ │ │ ├── StatusUpdateService.java │ │ │ └── UserService.java │ │ │ └── validation │ │ │ ├── PasswordMatch.java │ │ │ └── PasswordMatchValidator.java │ ├── resources │ │ ├── ValidationMessages.properties │ │ ├── application.properties │ │ └── mail │ │ │ └── verifyemail.html │ └── webapp │ │ ├── WEB-INF │ │ ├── layouts │ │ │ └── default.jsp │ │ ├── tags │ │ │ └── pagination.tag │ │ ├── tiles.xml │ │ └── tiles │ │ │ ├── about.jsp │ │ │ ├── addstatus.jsp │ │ │ ├── editstatus.jsp │ │ │ ├── home.jsp │ │ │ ├── login.jsp │ │ │ ├── register.jsp │ │ │ ├── verifyemail.jsp │ │ │ └── viewstatus.jsp │ │ ├── css │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ └── main.css │ │ └── js │ │ └── bootstrap.min.js │ └── test │ └── java │ └── com │ └── caveofprogramming │ └── tests │ └── StatusTest.java ├── spring-boot-tutorial-tiles ├── .gitignore ├── pom.xml └── src │ └── main │ ├── java │ └── com │ │ └── caveofprogramming │ │ ├── App.java │ │ └── controllers │ │ ├── AuthController.java │ │ └── PageController.java │ ├── resources │ └── application.properties │ └── webapp │ └── WEB-INF │ ├── layouts │ └── default.jsp │ ├── tiles.xml │ └── tiles │ ├── about.jsp │ └── home.jsp ├── spring-boot-tutorial-token-verification copy ├── .gitignore ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── caveofprogramming │ │ │ ├── App.java │ │ │ ├── configuration │ │ │ ├── MailConfig.java │ │ │ └── WebSecurityConfig.java │ │ │ ├── controllers │ │ │ ├── AuthController.java │ │ │ ├── PageController.java │ │ │ └── StatusUpdateController.java │ │ │ ├── model │ │ │ ├── SiteUser.java │ │ │ ├── StatusUpdate.java │ │ │ ├── StatusUpdateDao.java │ │ │ ├── TokenType.java │ │ │ ├── UserDao.java │ │ │ ├── VerificationDao.java │ │ │ └── VerificationToken.java │ │ │ ├── service │ │ │ ├── EmailService.java │ │ │ ├── StatusUpdateService.java │ │ │ └── UserService.java │ │ │ ├── validation │ │ │ ├── PasswordMatch.java │ │ │ └── PasswordMatchValidator.java │ │ │ └── velocity │ │ │ └── verifyemail.vm │ ├── resources │ │ ├── ValidationMessages.properties │ │ └── application.properties │ └── webapp │ │ ├── WEB-INF │ │ ├── layouts │ │ │ └── default.jsp │ │ ├── tags │ │ │ └── pagination.tag │ │ ├── tiles.xml │ │ └── tiles │ │ │ ├── about.jsp │ │ │ ├── addstatus.jsp │ │ │ ├── editstatus.jsp │ │ │ ├── home.jsp │ │ │ ├── login.jsp │ │ │ ├── message.jsp │ │ │ ├── register.jsp │ │ │ ├── verifyemail.jsp │ │ │ └── viewstatus.jsp │ │ ├── css │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ └── main.css │ │ └── js │ │ └── bootstrap.min.js │ └── test │ └── java │ └── com │ └── caveofprogramming │ └── tests │ └── StatusTest.java ├── spring-boot-tutorial-token-verification ├── .gitignore ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── caveofprogramming │ │ │ ├── App.java │ │ │ ├── configuration │ │ │ ├── MailConfig.java │ │ │ └── WebSecurityConfig.java │ │ │ ├── controllers │ │ │ ├── AuthController.java │ │ │ ├── PageController.java │ │ │ └── StatusUpdateController.java │ │ │ ├── model │ │ │ ├── SiteUser.java │ │ │ ├── StatusUpdate.java │ │ │ ├── StatusUpdateDao.java │ │ │ ├── TokenType.java │ │ │ ├── UserDao.java │ │ │ ├── VerificationDao.java │ │ │ └── VerificationToken.java │ │ │ ├── service │ │ │ ├── EmailService.java │ │ │ ├── StatusUpdateService.java │ │ │ └── UserService.java │ │ │ ├── validation │ │ │ ├── PasswordMatch.java │ │ │ └── PasswordMatchValidator.java │ │ │ └── velocity │ │ │ └── verifyemail.vm │ ├── resources │ │ ├── ValidationMessages.properties │ │ ├── application.properties │ │ └── mail │ │ │ └── verifyemail.html │ └── webapp │ │ ├── WEB-INF │ │ ├── layouts │ │ │ └── default.jsp │ │ ├── tags │ │ │ └── pagination.tag │ │ ├── tiles.xml │ │ └── tiles │ │ │ ├── about.jsp │ │ │ ├── addstatus.jsp │ │ │ ├── editstatus.jsp │ │ │ ├── home.jsp │ │ │ ├── login.jsp │ │ │ ├── message.jsp │ │ │ ├── register.jsp │ │ │ ├── verifyemail.jsp │ │ │ └── viewstatus.jsp │ │ ├── css │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ └── main.css │ │ └── js │ │ └── bootstrap.min.js │ └── test │ └── java │ └── com │ └── caveofprogramming │ └── tests │ └── StatusTest.java ├── spring-boot-tutorial-upgrade ├── .classpath ├── .gitignore ├── .project ├── .settings │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.jdt.core.prefs │ ├── org.eclipse.m2e.core.prefs │ ├── org.eclipse.wst.common.component │ ├── org.eclipse.wst.common.project.facet.core.xml │ └── org.eclipse.wst.validation.prefs ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── caveofprogramming │ │ │ ├── App.java │ │ │ ├── configuration │ │ │ ├── MailConfig.java │ │ │ └── WebSecurityConfig.java │ │ │ ├── controllers │ │ │ ├── AuthController.java │ │ │ ├── GlobalExceptionHandler.java │ │ │ ├── PageController.java │ │ │ ├── ProfileController.java │ │ │ ├── SearchController.java │ │ │ └── StatusUpdateController.java │ │ │ ├── exceptions │ │ │ ├── ImageTooSmallException.java │ │ │ └── InvalidFileException.java │ │ │ ├── model │ │ │ ├── dto │ │ │ │ ├── FileInfo.java │ │ │ │ └── SearchResult.java │ │ │ ├── entity │ │ │ │ ├── Interest.java │ │ │ │ ├── Profile.java │ │ │ │ ├── SiteUser.java │ │ │ │ ├── StatusUpdate.java │ │ │ │ ├── TokenType.java │ │ │ │ └── VerificationToken.java │ │ │ └── repository │ │ │ │ ├── InterestDao.java │ │ │ │ ├── ProfileDao.java │ │ │ │ ├── StatusUpdateDao.java │ │ │ │ ├── UserDao.java │ │ │ │ └── VerificationDao.java │ │ │ ├── service │ │ │ ├── EmailService.java │ │ │ ├── FileService.java │ │ │ ├── InterestService.java │ │ │ ├── ProfileService.java │ │ │ ├── SearchService.java │ │ │ ├── StatusUpdateService.java │ │ │ └── UserService.java │ │ │ ├── status │ │ │ └── PhotoUploadStatus.java │ │ │ ├── validation │ │ │ ├── PasswordMatch.java │ │ │ └── PasswordMatchValidator.java │ │ │ └── velocity │ │ │ └── verifyemail.vm │ ├── resources │ │ ├── ValidationMessages.properties │ │ ├── application.properties │ │ ├── mail │ │ │ └── verifyemail.html │ │ └── test.properties │ └── webapp │ │ ├── WEB-INF │ │ ├── layouts │ │ │ └── default.jsp │ │ ├── tags │ │ │ └── pagination.tag │ │ ├── tiles.xml │ │ └── tiles │ │ │ ├── about.jsp │ │ │ ├── addstatus.jsp │ │ │ ├── editprofileabout.jsp │ │ │ ├── editstatus.jsp │ │ │ ├── exception.jsp │ │ │ ├── home.jsp │ │ │ ├── login.jsp │ │ │ ├── message.jsp │ │ │ ├── profile.jsp │ │ │ ├── register.jsp │ │ │ ├── results.jsp │ │ │ ├── verifyemail.jsp │ │ │ └── viewstatus.jsp │ │ ├── css │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ ├── jquery.tagit.css │ │ └── main.css │ │ ├── img │ │ └── avatar.jpg │ │ └── js │ │ ├── bootstrap.min.js │ │ ├── jquery-ui.min.js │ │ └── tag-it.min.js │ └── test │ └── java │ └── com │ └── caveofprogramming │ └── tests │ ├── BulkTests.java │ ├── FileServiceTest.java │ ├── ProfileControllerRestTest.java │ ├── ProfileTest.java │ ├── StatusTest.java │ └── data │ ├── hobbies.txt │ └── names.txt ├── spring-boot-tutorial-upload-photos ├── .gitignore ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── caveofprogramming │ │ │ ├── App.java │ │ │ ├── configuration │ │ │ ├── MailConfig.java │ │ │ └── WebSecurityConfig.java │ │ │ ├── controllers │ │ │ ├── AuthController.java │ │ │ ├── GlobalExceptionHandler.java │ │ │ ├── PageController.java │ │ │ ├── ProfileController.java │ │ │ └── StatusUpdateController.java │ │ │ ├── exceptions │ │ │ ├── ImageTooSmallException.java │ │ │ └── InvalidFileException.java │ │ │ ├── model │ │ │ ├── FileInfo.java │ │ │ ├── Profile.java │ │ │ ├── ProfileDao.java │ │ │ ├── SiteUser.java │ │ │ ├── StatusUpdate.java │ │ │ ├── StatusUpdateDao.java │ │ │ ├── TokenType.java │ │ │ ├── UserDao.java │ │ │ ├── VerificationDao.java │ │ │ └── VerificationToken.java │ │ │ ├── service │ │ │ ├── EmailService.java │ │ │ ├── FileService.java │ │ │ ├── ProfileService.java │ │ │ ├── StatusUpdateService.java │ │ │ └── UserService.java │ │ │ ├── status │ │ │ └── PhotoUploadStatus.java │ │ │ ├── validation │ │ │ ├── PasswordMatch.java │ │ │ └── PasswordMatchValidator.java │ │ │ └── velocity │ │ │ └── verifyemail.vm │ ├── resources │ │ ├── ValidationMessages.properties │ │ └── application.properties │ └── webapp │ │ ├── WEB-INF │ │ ├── layouts │ │ │ └── default.jsp │ │ ├── tags │ │ │ └── pagination.tag │ │ ├── tiles.xml │ │ └── tiles │ │ │ ├── about.jsp │ │ │ ├── addstatus.jsp │ │ │ ├── editprofileabout.jsp │ │ │ ├── editstatus.jsp │ │ │ ├── exception.jsp │ │ │ ├── home.jsp │ │ │ ├── login.jsp │ │ │ ├── message.jsp │ │ │ ├── profile.jsp │ │ │ ├── register.jsp │ │ │ ├── verifyemail.jsp │ │ │ └── viewstatus.jsp │ │ ├── css │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ └── main.css │ │ ├── img │ │ └── avatar.jpg │ │ └── js │ │ └── bootstrap.min.js │ └── test │ └── java │ └── com │ └── caveofprogramming │ └── tests │ ├── FileServiceTest.java │ └── StatusTest.java ├── spring-boot-tutorial-view-profiles ├── .gitignore ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── caveofprogramming │ │ │ ├── App.java │ │ │ ├── configuration │ │ │ ├── MailConfig.java │ │ │ └── WebSecurityConfig.java │ │ │ ├── controllers │ │ │ ├── AuthController.java │ │ │ ├── GlobalExceptionHandler.java │ │ │ ├── PageController.java │ │ │ ├── ProfileController.java │ │ │ └── StatusUpdateController.java │ │ │ ├── exceptions │ │ │ ├── ImageTooSmallException.java │ │ │ └── InvalidFileException.java │ │ │ ├── model │ │ │ ├── FileInfo.java │ │ │ ├── Profile.java │ │ │ ├── ProfileDao.java │ │ │ ├── SiteUser.java │ │ │ ├── StatusUpdate.java │ │ │ ├── StatusUpdateDao.java │ │ │ ├── TokenType.java │ │ │ ├── UserDao.java │ │ │ ├── VerificationDao.java │ │ │ └── VerificationToken.java │ │ │ ├── service │ │ │ ├── EmailService.java │ │ │ ├── FileService.java │ │ │ ├── ProfileService.java │ │ │ ├── StatusUpdateService.java │ │ │ └── UserService.java │ │ │ ├── status │ │ │ └── PhotoUploadStatus.java │ │ │ ├── validation │ │ │ ├── PasswordMatch.java │ │ │ └── PasswordMatchValidator.java │ │ │ └── velocity │ │ │ └── verifyemail.vm │ ├── resources │ │ ├── ValidationMessages.properties │ │ └── application.properties │ └── webapp │ │ ├── WEB-INF │ │ ├── layouts │ │ │ └── default.jsp │ │ ├── tags │ │ │ └── pagination.tag │ │ ├── tiles.xml │ │ └── tiles │ │ │ ├── about.jsp │ │ │ ├── addstatus.jsp │ │ │ ├── editprofileabout.jsp │ │ │ ├── editstatus.jsp │ │ │ ├── exception.jsp │ │ │ ├── home.jsp │ │ │ ├── login.jsp │ │ │ ├── message.jsp │ │ │ ├── profile.jsp │ │ │ ├── register.jsp │ │ │ ├── verifyemail.jsp │ │ │ └── viewstatus.jsp │ │ ├── css │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ └── main.css │ │ ├── img │ │ └── avatar.jpg │ │ └── js │ │ └── bootstrap.min.js │ └── test │ └── java │ └── com │ └── caveofprogramming │ └── tests │ ├── FileServiceTest.java │ └── StatusTest.java ├── spring-boot-tutorial-war ├── .gitignore ├── pom.xml └── src │ └── main │ ├── java │ └── com │ │ └── caveofprogramming │ │ └── App.java │ ├── resources │ └── application.properties │ └── webapp │ └── WEB-INF │ └── jsps │ └── home.jsp ├── spring-boot-tutorial ├── .gitignore ├── pom.xml └── src │ └── main │ └── java │ └── com │ └── caveofprogramming │ └── App.java ├── spring-boot-validating-password ├── .gitignore ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── caveofprogramming │ │ │ ├── App.java │ │ │ ├── controllers │ │ │ ├── AuthController.java │ │ │ ├── PageController.java │ │ │ └── StatusUpdateController.java │ │ │ ├── model │ │ │ ├── SiteUser.java │ │ │ ├── StatusUpdate.java │ │ │ ├── StatusUpdateDao.java │ │ │ └── UserDao.java │ │ │ ├── security │ │ │ └── WebSecurityConfig.java │ │ │ └── service │ │ │ ├── StatusUpdateService.java │ │ │ └── UserService.java │ ├── resources │ │ ├── ValidationMessages.properties │ │ └── application.properties │ └── webapp │ │ ├── WEB-INF │ │ ├── layouts │ │ │ └── default.jsp │ │ ├── tags │ │ │ └── pagination.tag │ │ ├── tiles.xml │ │ └── tiles │ │ │ ├── about.jsp │ │ │ ├── addstatus.jsp │ │ │ ├── editstatus.jsp │ │ │ ├── home.jsp │ │ │ ├── login.jsp │ │ │ ├── register.jsp │ │ │ └── viewstatus.jsp │ │ ├── css │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ └── main.css │ │ └── js │ │ └── bootstrap.min.js │ └── test │ └── java │ └── com │ └── caveofprogramming │ └── tests │ └── StatusTest.java ├── spring-boot-webjars ├── .classpath ├── .gitignore ├── .project ├── .settings │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.jdt.core.prefs │ ├── org.eclipse.m2e.core.prefs │ ├── org.eclipse.wst.common.component │ ├── org.eclipse.wst.common.project.facet.core.xml │ └── org.eclipse.wst.validation.prefs ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── caveofprogramming │ │ │ ├── App.java │ │ │ ├── configuration │ │ │ ├── MailConfig.java │ │ │ ├── WebSecurityConfig.java │ │ │ └── WebSocketConfig.java │ │ │ ├── controllers │ │ │ ├── AuthController.java │ │ │ ├── GlobalExceptionHandler.java │ │ │ ├── PageController.java │ │ │ ├── ProfileController.java │ │ │ ├── SearchController.java │ │ │ └── StatusUpdateController.java │ │ │ ├── exceptions │ │ │ ├── ImageTooSmallException.java │ │ │ └── InvalidFileException.java │ │ │ ├── model │ │ │ ├── dto │ │ │ │ ├── FileInfo.java │ │ │ │ └── SearchResult.java │ │ │ ├── entity │ │ │ │ ├── Interest.java │ │ │ │ ├── Profile.java │ │ │ │ ├── SiteUser.java │ │ │ │ ├── StatusUpdate.java │ │ │ │ ├── TokenType.java │ │ │ │ └── VerificationToken.java │ │ │ └── repository │ │ │ │ ├── InterestDao.java │ │ │ │ ├── ProfileDao.java │ │ │ │ ├── StatusUpdateDao.java │ │ │ │ ├── UserDao.java │ │ │ │ └── VerificationDao.java │ │ │ ├── service │ │ │ ├── EmailService.java │ │ │ ├── FileService.java │ │ │ ├── InterestService.java │ │ │ ├── ProfileService.java │ │ │ ├── SearchService.java │ │ │ ├── StatusUpdateService.java │ │ │ └── UserService.java │ │ │ ├── status │ │ │ └── PhotoUploadStatus.java │ │ │ ├── validation │ │ │ ├── PasswordMatch.java │ │ │ └── PasswordMatchValidator.java │ │ │ └── velocity │ │ │ └── verifyemail.vm │ ├── resources │ │ ├── ValidationMessages.properties │ │ ├── application.properties │ │ ├── mail │ │ │ └── verifyemail.html │ │ └── test.properties │ └── webapp │ │ ├── WEB-INF │ │ ├── layouts │ │ │ └── default.jsp │ │ ├── tags │ │ │ └── pagination.tag │ │ ├── tiles.xml │ │ └── tiles │ │ │ ├── about.jsp │ │ │ ├── addstatus.jsp │ │ │ ├── editprofileabout.jsp │ │ │ ├── editstatus.jsp │ │ │ ├── exception.jsp │ │ │ ├── home.jsp │ │ │ ├── login.jsp │ │ │ ├── message.jsp │ │ │ ├── profile.jsp │ │ │ ├── register.jsp │ │ │ ├── results.jsp │ │ │ ├── verifyemail.jsp │ │ │ └── viewstatus.jsp │ │ ├── css │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ ├── jquery.tagit.css │ │ └── main.css │ │ ├── img │ │ └── avatar.jpg │ │ └── js │ │ ├── bootstrap.min.js │ │ ├── jquery-ui.min.js │ │ └── tag-it.min.js │ └── test │ └── java │ └── com │ └── caveofprogramming │ └── tests │ ├── BulkTests.java │ ├── FileServiceTest.java │ ├── ProfileControllerRestTest.java │ ├── ProfileTest.java │ ├── StatusTest.java │ └── data │ ├── hobbies.txt │ └── names.txt ├── spring-boot-websockets ├── .classpath ├── .gitignore ├── .project ├── .settings │ ├── org.eclipse.core.resources.prefs │ ├── org.eclipse.jdt.core.prefs │ ├── org.eclipse.m2e.core.prefs │ ├── org.eclipse.wst.common.component │ ├── org.eclipse.wst.common.project.facet.core.xml │ └── org.eclipse.wst.validation.prefs ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── caveofprogramming │ │ │ ├── App.java │ │ │ ├── configuration │ │ │ ├── MailConfig.java │ │ │ ├── WebSecurityConfig.java │ │ │ └── WebSocketConfig.java │ │ │ ├── controllers │ │ │ ├── AuthController.java │ │ │ ├── ChatController.java │ │ │ ├── GlobalExceptionHandler.java │ │ │ ├── PageController.java │ │ │ ├── ProfileController.java │ │ │ ├── SearchController.java │ │ │ ├── StatusUpdateController.java │ │ │ └── Util.java │ │ │ ├── exceptions │ │ │ ├── ImageTooSmallException.java │ │ │ └── InvalidFileException.java │ │ │ ├── model │ │ │ ├── dto │ │ │ │ ├── FileInfo.java │ │ │ │ ├── SearchResult.java │ │ │ │ └── SimpleMessage.java │ │ │ ├── entity │ │ │ │ ├── Interest.java │ │ │ │ ├── Profile.java │ │ │ │ ├── SiteUser.java │ │ │ │ ├── StatusUpdate.java │ │ │ │ ├── TokenType.java │ │ │ │ └── VerificationToken.java │ │ │ └── repository │ │ │ │ ├── InterestDao.java │ │ │ │ ├── ProfileDao.java │ │ │ │ ├── StatusUpdateDao.java │ │ │ │ ├── UserDao.java │ │ │ │ └── VerificationDao.java │ │ │ ├── service │ │ │ ├── EmailService.java │ │ │ ├── FileService.java │ │ │ ├── InterestService.java │ │ │ ├── ProfileService.java │ │ │ ├── SearchService.java │ │ │ ├── StatusUpdateService.java │ │ │ └── UserService.java │ │ │ ├── status │ │ │ └── PhotoUploadStatus.java │ │ │ ├── validation │ │ │ ├── PasswordMatch.java │ │ │ └── PasswordMatchValidator.java │ │ │ └── velocity │ │ │ └── verifyemail.vm │ ├── resources │ │ ├── ValidationMessages.properties │ │ ├── application.properties │ │ ├── mail │ │ │ └── verifyemail.html │ │ └── test.properties │ └── webapp │ │ ├── WEB-INF │ │ ├── layouts │ │ │ └── default.jsp │ │ ├── tags │ │ │ └── pagination.tag │ │ ├── tiles.xml │ │ └── tiles │ │ │ ├── about.jsp │ │ │ ├── addstatus.jsp │ │ │ ├── chatnotifications.jsp │ │ │ ├── chatview.jsp │ │ │ ├── chatviewscript.jsp │ │ │ ├── editprofileabout.jsp │ │ │ ├── editstatus.jsp │ │ │ ├── exception.jsp │ │ │ ├── home.jsp │ │ │ ├── login.jsp │ │ │ ├── message.jsp │ │ │ ├── profile.jsp │ │ │ ├── register.jsp │ │ │ ├── results.jsp │ │ │ ├── verifyemail.jsp │ │ │ └── viewstatus.jsp │ │ ├── css │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ ├── jquery.tagit.css │ │ └── main.css │ │ ├── img │ │ └── avatar.jpg │ │ └── js │ │ ├── bootstrap.min.js │ │ ├── connectionmanager.js │ │ ├── jquery-ui.min.js │ │ └── tag-it.min.js │ └── test │ └── java │ └── com │ └── caveofprogramming │ └── tests │ ├── BulkTests.java │ ├── FileServiceTest.java │ ├── ProfileControllerRestTest.java │ ├── ProfileTest.java │ ├── StatusTest.java │ └── data │ ├── hobbies.txt │ └── names.txt └── upgrading-springboot-1-to-2.pdf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/README.md -------------------------------------------------------------------------------- /messagingtest/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /messagingtest/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/messagingtest/pom.xml -------------------------------------------------------------------------------- /messagingtest/put: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/messagingtest/put -------------------------------------------------------------------------------- /messagingtest/src/main/java/com/caveofprogramming/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/messagingtest/src/main/java/com/caveofprogramming/App.java -------------------------------------------------------------------------------- /messagingtest/src/main/java/com/caveofprogramming/controllers/Util.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/messagingtest/src/main/java/com/caveofprogramming/controllers/Util.java -------------------------------------------------------------------------------- /messagingtest/src/main/java/com/caveofprogramming/model/dto/FileInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/messagingtest/src/main/java/com/caveofprogramming/model/dto/FileInfo.java -------------------------------------------------------------------------------- /messagingtest/src/main/java/com/caveofprogramming/model/dto/SearchResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/messagingtest/src/main/java/com/caveofprogramming/model/dto/SearchResult.java -------------------------------------------------------------------------------- /messagingtest/src/main/java/com/caveofprogramming/model/dto/SpringUser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/messagingtest/src/main/java/com/caveofprogramming/model/dto/SpringUser.java -------------------------------------------------------------------------------- /messagingtest/src/main/java/com/caveofprogramming/model/entity/Interest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/messagingtest/src/main/java/com/caveofprogramming/model/entity/Interest.java -------------------------------------------------------------------------------- /messagingtest/src/main/java/com/caveofprogramming/model/entity/Message.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/messagingtest/src/main/java/com/caveofprogramming/model/entity/Message.java -------------------------------------------------------------------------------- /messagingtest/src/main/java/com/caveofprogramming/model/entity/Profile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/messagingtest/src/main/java/com/caveofprogramming/model/entity/Profile.java -------------------------------------------------------------------------------- /messagingtest/src/main/java/com/caveofprogramming/model/entity/SiteUser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/messagingtest/src/main/java/com/caveofprogramming/model/entity/SiteUser.java -------------------------------------------------------------------------------- /messagingtest/src/main/java/com/caveofprogramming/model/entity/TokenType.java: -------------------------------------------------------------------------------- 1 | package com.caveofprogramming.model.entity; 2 | 3 | public enum TokenType { 4 | REGISTRATION, 5 | PASSWORD_RESET 6 | } 7 | -------------------------------------------------------------------------------- /messagingtest/src/main/java/com/caveofprogramming/service/EmailService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/messagingtest/src/main/java/com/caveofprogramming/service/EmailService.java -------------------------------------------------------------------------------- /messagingtest/src/main/java/com/caveofprogramming/service/FileService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/messagingtest/src/main/java/com/caveofprogramming/service/FileService.java -------------------------------------------------------------------------------- /messagingtest/src/main/java/com/caveofprogramming/service/MessageService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/messagingtest/src/main/java/com/caveofprogramming/service/MessageService.java -------------------------------------------------------------------------------- /messagingtest/src/main/java/com/caveofprogramming/service/ProfileService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/messagingtest/src/main/java/com/caveofprogramming/service/ProfileService.java -------------------------------------------------------------------------------- /messagingtest/src/main/java/com/caveofprogramming/service/SearchService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/messagingtest/src/main/java/com/caveofprogramming/service/SearchService.java -------------------------------------------------------------------------------- /messagingtest/src/main/java/com/caveofprogramming/service/UserService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/messagingtest/src/main/java/com/caveofprogramming/service/UserService.java -------------------------------------------------------------------------------- /messagingtest/src/main/resources/ValidationMessages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/messagingtest/src/main/resources/ValidationMessages.properties -------------------------------------------------------------------------------- /messagingtest/src/main/resources/application-dev.properties: -------------------------------------------------------------------------------- 1 | photo.upload.directory=/Users/johnpurcell/springboot/photos 2 | 3 | -------------------------------------------------------------------------------- /messagingtest/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/messagingtest/src/main/resources/application.properties -------------------------------------------------------------------------------- /messagingtest/src/main/resources/mail/verifyemail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/messagingtest/src/main/resources/mail/verifyemail.html -------------------------------------------------------------------------------- /messagingtest/src/main/resources/test.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/messagingtest/src/main/resources/test.properties -------------------------------------------------------------------------------- /messagingtest/src/main/webapp/WEB-INF/layouts/default.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/messagingtest/src/main/webapp/WEB-INF/layouts/default.jsp -------------------------------------------------------------------------------- /messagingtest/src/main/webapp/WEB-INF/tags/pagination.tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/messagingtest/src/main/webapp/WEB-INF/tags/pagination.tag -------------------------------------------------------------------------------- /messagingtest/src/main/webapp/WEB-INF/tiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/messagingtest/src/main/webapp/WEB-INF/tiles.xml -------------------------------------------------------------------------------- /messagingtest/src/main/webapp/WEB-INF/tiles/about.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/messagingtest/src/main/webapp/WEB-INF/tiles/about.jsp -------------------------------------------------------------------------------- /messagingtest/src/main/webapp/WEB-INF/tiles/addstatus.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/messagingtest/src/main/webapp/WEB-INF/tiles/addstatus.jsp -------------------------------------------------------------------------------- /messagingtest/src/main/webapp/WEB-INF/tiles/chatnotifications.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/messagingtest/src/main/webapp/WEB-INF/tiles/chatnotifications.jsp -------------------------------------------------------------------------------- /messagingtest/src/main/webapp/WEB-INF/tiles/chatview.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/messagingtest/src/main/webapp/WEB-INF/tiles/chatview.jsp -------------------------------------------------------------------------------- /messagingtest/src/main/webapp/WEB-INF/tiles/chatviewscript.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/messagingtest/src/main/webapp/WEB-INF/tiles/chatviewscript.jsp -------------------------------------------------------------------------------- /messagingtest/src/main/webapp/WEB-INF/tiles/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/messagingtest/src/main/webapp/WEB-INF/tiles/custom.css -------------------------------------------------------------------------------- /messagingtest/src/main/webapp/WEB-INF/tiles/editprofileabout.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/messagingtest/src/main/webapp/WEB-INF/tiles/editprofileabout.jsp -------------------------------------------------------------------------------- /messagingtest/src/main/webapp/WEB-INF/tiles/editstatus.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/messagingtest/src/main/webapp/WEB-INF/tiles/editstatus.jsp -------------------------------------------------------------------------------- /messagingtest/src/main/webapp/WEB-INF/tiles/exception.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/messagingtest/src/main/webapp/WEB-INF/tiles/exception.jsp -------------------------------------------------------------------------------- /messagingtest/src/main/webapp/WEB-INF/tiles/home.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/messagingtest/src/main/webapp/WEB-INF/tiles/home.jsp -------------------------------------------------------------------------------- /messagingtest/src/main/webapp/WEB-INF/tiles/login.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/messagingtest/src/main/webapp/WEB-INF/tiles/login.jsp -------------------------------------------------------------------------------- /messagingtest/src/main/webapp/WEB-INF/tiles/logout-success.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/messagingtest/src/main/webapp/WEB-INF/tiles/logout-success.jsp -------------------------------------------------------------------------------- /messagingtest/src/main/webapp/WEB-INF/tiles/message.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/messagingtest/src/main/webapp/WEB-INF/tiles/message.jsp -------------------------------------------------------------------------------- /messagingtest/src/main/webapp/WEB-INF/tiles/messages.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/messagingtest/src/main/webapp/WEB-INF/tiles/messages.jsp -------------------------------------------------------------------------------- /messagingtest/src/main/webapp/WEB-INF/tiles/profile.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/messagingtest/src/main/webapp/WEB-INF/tiles/profile.jsp -------------------------------------------------------------------------------- /messagingtest/src/main/webapp/WEB-INF/tiles/register.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/messagingtest/src/main/webapp/WEB-INF/tiles/register.jsp -------------------------------------------------------------------------------- /messagingtest/src/main/webapp/WEB-INF/tiles/results.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/messagingtest/src/main/webapp/WEB-INF/tiles/results.jsp -------------------------------------------------------------------------------- /messagingtest/src/main/webapp/WEB-INF/tiles/tos.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/messagingtest/src/main/webapp/WEB-INF/tiles/tos.jsp -------------------------------------------------------------------------------- /messagingtest/src/main/webapp/WEB-INF/tiles/verifyemail.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/messagingtest/src/main/webapp/WEB-INF/tiles/verifyemail.jsp -------------------------------------------------------------------------------- /messagingtest/src/main/webapp/WEB-INF/tiles/viewstatus.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/messagingtest/src/main/webapp/WEB-INF/tiles/viewstatus.jsp -------------------------------------------------------------------------------- /messagingtest/src/main/webapp/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/messagingtest/src/main/webapp/css/bootstrap.min.css -------------------------------------------------------------------------------- /messagingtest/src/main/webapp/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/messagingtest/src/main/webapp/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /messagingtest/src/main/webapp/css/jquery.cookiebar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/messagingtest/src/main/webapp/css/jquery.cookiebar.css -------------------------------------------------------------------------------- /messagingtest/src/main/webapp/css/jquery.tagit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/messagingtest/src/main/webapp/css/jquery.tagit.css -------------------------------------------------------------------------------- /messagingtest/src/main/webapp/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/messagingtest/src/main/webapp/css/main.css -------------------------------------------------------------------------------- /messagingtest/src/main/webapp/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/messagingtest/src/main/webapp/favicon.ico -------------------------------------------------------------------------------- /messagingtest/src/main/webapp/img/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/messagingtest/src/main/webapp/img/avatar.jpg -------------------------------------------------------------------------------- /messagingtest/src/main/webapp/img/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/messagingtest/src/main/webapp/img/logo.jpg -------------------------------------------------------------------------------- /messagingtest/src/main/webapp/img/message.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/messagingtest/src/main/webapp/img/message.jpg -------------------------------------------------------------------------------- /messagingtest/src/main/webapp/img/navbar-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/messagingtest/src/main/webapp/img/navbar-logo.png -------------------------------------------------------------------------------- /messagingtest/src/main/webapp/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/messagingtest/src/main/webapp/js/bootstrap.min.js -------------------------------------------------------------------------------- /messagingtest/src/main/webapp/js/connection-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/messagingtest/src/main/webapp/js/connection-manager.js -------------------------------------------------------------------------------- /messagingtest/src/main/webapp/js/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/messagingtest/src/main/webapp/js/jquery-ui.min.js -------------------------------------------------------------------------------- /messagingtest/src/main/webapp/js/jquery.cookiebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/messagingtest/src/main/webapp/js/jquery.cookiebar.js -------------------------------------------------------------------------------- /messagingtest/src/main/webapp/js/sockjs.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/messagingtest/src/main/webapp/js/sockjs.min.js -------------------------------------------------------------------------------- /messagingtest/src/main/webapp/js/stomp.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/messagingtest/src/main/webapp/js/stomp.min.js -------------------------------------------------------------------------------- /messagingtest/src/main/webapp/js/tag-it.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/messagingtest/src/main/webapp/js/tag-it.min.js -------------------------------------------------------------------------------- /messagingtest/src/test/java/com/caveofprogramming/tests/BulkTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/messagingtest/src/test/java/com/caveofprogramming/tests/BulkTests.java -------------------------------------------------------------------------------- /messagingtest/src/test/java/com/caveofprogramming/tests/FileServiceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/messagingtest/src/test/java/com/caveofprogramming/tests/FileServiceTest.java -------------------------------------------------------------------------------- /messagingtest/src/test/java/com/caveofprogramming/tests/ProfileTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/messagingtest/src/test/java/com/caveofprogramming/tests/ProfileTest.java -------------------------------------------------------------------------------- /messagingtest/src/test/java/com/caveofprogramming/tests/StatusTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/messagingtest/src/test/java/com/caveofprogramming/tests/StatusTest.java -------------------------------------------------------------------------------- /messagingtest/src/test/java/com/caveofprogramming/tests/WebSocketTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/messagingtest/src/test/java/com/caveofprogramming/tests/WebSocketTest.java -------------------------------------------------------------------------------- /messagingtest/src/test/resources/com/caveofprogramming/tests/data/hobbies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/messagingtest/src/test/resources/com/caveofprogramming/tests/data/hobbies.txt -------------------------------------------------------------------------------- /messagingtest/src/test/resources/com/caveofprogramming/tests/data/names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/messagingtest/src/test/resources/com/caveofprogramming/tests/data/names.txt -------------------------------------------------------------------------------- /messagingtest/src/test/resources/com/caveofprogramming/tests/data/random.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/messagingtest/src/test/resources/com/caveofprogramming/tests/data/random.txt -------------------------------------------------------------------------------- /nginx-default.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/nginx-default.txt -------------------------------------------------------------------------------- /spring-boot-checking-passwords-match/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /spring-boot-checking-passwords-match/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-checking-passwords-match/pom.xml -------------------------------------------------------------------------------- /spring-boot-checking-passwords-match/src/main/webapp/WEB-INF/tiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-checking-passwords-match/src/main/webapp/WEB-INF/tiles.xml -------------------------------------------------------------------------------- /spring-boot-checking-passwords-match/src/main/webapp/WEB-INF/tiles/about.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-checking-passwords-match/src/main/webapp/WEB-INF/tiles/about.jsp -------------------------------------------------------------------------------- /spring-boot-checking-passwords-match/src/main/webapp/WEB-INF/tiles/home.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-checking-passwords-match/src/main/webapp/WEB-INF/tiles/home.jsp -------------------------------------------------------------------------------- /spring-boot-checking-passwords-match/src/main/webapp/WEB-INF/tiles/login.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-checking-passwords-match/src/main/webapp/WEB-INF/tiles/login.jsp -------------------------------------------------------------------------------- /spring-boot-checking-passwords-match/src/main/webapp/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-checking-passwords-match/src/main/webapp/css/bootstrap.min.css -------------------------------------------------------------------------------- /spring-boot-checking-passwords-match/src/main/webapp/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-checking-passwords-match/src/main/webapp/css/main.css -------------------------------------------------------------------------------- /spring-boot-checking-passwords-match/src/main/webapp/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-checking-passwords-match/src/main/webapp/js/bootstrap.min.js -------------------------------------------------------------------------------- /spring-boot-tutorial-adding-security/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /spring-boot-tutorial-adding-security/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-adding-security/pom.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-adding-security/src/main/resources/test.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-adding-security/src/main/resources/test.properties -------------------------------------------------------------------------------- /spring-boot-tutorial-adding-security/src/main/webapp/WEB-INF/tiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-adding-security/src/main/webapp/WEB-INF/tiles.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-adding-security/src/main/webapp/WEB-INF/tiles/about.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-adding-security/src/main/webapp/WEB-INF/tiles/about.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-adding-security/src/main/webapp/WEB-INF/tiles/home.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-adding-security/src/main/webapp/WEB-INF/tiles/home.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-adding-security/src/main/webapp/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-adding-security/src/main/webapp/css/bootstrap.min.css -------------------------------------------------------------------------------- /spring-boot-tutorial-adding-security/src/main/webapp/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-adding-security/src/main/webapp/css/main.css -------------------------------------------------------------------------------- /spring-boot-tutorial-adding-security/src/main/webapp/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-adding-security/src/main/webapp/js/bootstrap.min.js -------------------------------------------------------------------------------- /spring-boot-tutorial-authentication/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /spring-boot-tutorial-authentication/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-authentication/pom.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-authentication/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-authentication/src/main/resources/application.properties -------------------------------------------------------------------------------- /spring-boot-tutorial-authentication/src/main/webapp/WEB-INF/tiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-authentication/src/main/webapp/WEB-INF/tiles.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-authentication/src/main/webapp/WEB-INF/tiles/about.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-authentication/src/main/webapp/WEB-INF/tiles/about.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-authentication/src/main/webapp/WEB-INF/tiles/home.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-authentication/src/main/webapp/WEB-INF/tiles/home.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-authentication/src/main/webapp/WEB-INF/tiles/login.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-authentication/src/main/webapp/WEB-INF/tiles/login.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-authentication/src/main/webapp/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-authentication/src/main/webapp/css/bootstrap.min.css -------------------------------------------------------------------------------- /spring-boot-tutorial-authentication/src/main/webapp/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-authentication/src/main/webapp/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /spring-boot-tutorial-authentication/src/main/webapp/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-authentication/src/main/webapp/css/main.css -------------------------------------------------------------------------------- /spring-boot-tutorial-authentication/src/main/webapp/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-authentication/src/main/webapp/js/bootstrap.min.js -------------------------------------------------------------------------------- /spring-boot-tutorial-bootstrap-panels/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /spring-boot-tutorial-bootstrap-panels/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-bootstrap-panels/pom.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-bootstrap-panels/src/main/webapp/WEB-INF/tiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-bootstrap-panels/src/main/webapp/WEB-INF/tiles.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-bootstrap-panels/src/main/webapp/WEB-INF/tiles/about.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-bootstrap-panels/src/main/webapp/WEB-INF/tiles/about.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-bootstrap-panels/src/main/webapp/WEB-INF/tiles/home.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-bootstrap-panels/src/main/webapp/WEB-INF/tiles/home.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-bootstrap-panels/src/main/webapp/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-bootstrap-panels/src/main/webapp/css/bootstrap.min.css -------------------------------------------------------------------------------- /spring-boot-tutorial-bootstrap-panels/src/main/webapp/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-bootstrap-panels/src/main/webapp/css/main.css -------------------------------------------------------------------------------- /spring-boot-tutorial-bootstrap-panels/src/main/webapp/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-bootstrap-panels/src/main/webapp/js/bootstrap.min.js -------------------------------------------------------------------------------- /spring-boot-tutorial-connecting/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /spring-boot-tutorial-connecting/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-connecting/pom.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-connecting/src/main/java/com/caveofprogramming/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-connecting/src/main/java/com/caveofprogramming/App.java -------------------------------------------------------------------------------- /spring-boot-tutorial-connecting/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-connecting/src/main/resources/application.properties -------------------------------------------------------------------------------- /spring-boot-tutorial-connecting/src/main/webapp/WEB-INF/layouts/default.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-connecting/src/main/webapp/WEB-INF/layouts/default.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-connecting/src/main/webapp/WEB-INF/tiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-connecting/src/main/webapp/WEB-INF/tiles.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-connecting/src/main/webapp/WEB-INF/tiles/about.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-connecting/src/main/webapp/WEB-INF/tiles/about.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-connecting/src/main/webapp/WEB-INF/tiles/addstatus.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-connecting/src/main/webapp/WEB-INF/tiles/addstatus.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-connecting/src/main/webapp/WEB-INF/tiles/home.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-connecting/src/main/webapp/WEB-INF/tiles/home.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-connecting/src/main/webapp/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-connecting/src/main/webapp/css/bootstrap.min.css -------------------------------------------------------------------------------- /spring-boot-tutorial-connecting/src/main/webapp/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-connecting/src/main/webapp/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /spring-boot-tutorial-connecting/src/main/webapp/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-connecting/src/main/webapp/css/main.css -------------------------------------------------------------------------------- /spring-boot-tutorial-connecting/src/main/webapp/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-connecting/src/main/webapp/js/bootstrap.min.js -------------------------------------------------------------------------------- /spring-boot-tutorial-connection-manager/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /spring-boot-tutorial-connection-manager/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-connection-manager/.project -------------------------------------------------------------------------------- /spring-boot-tutorial-connection-manager/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /spring-boot-tutorial-connection-manager/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-connection-manager/pom.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-connection-manager/src/main/resources/test.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-connection-manager/src/main/resources/test.properties -------------------------------------------------------------------------------- /spring-boot-tutorial-connection-manager/src/main/webapp/WEB-INF/tiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-connection-manager/src/main/webapp/WEB-INF/tiles.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-connection-manager/src/main/webapp/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-connection-manager/src/main/webapp/css/main.css -------------------------------------------------------------------------------- /spring-boot-tutorial-connection-manager/src/main/webapp/img/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-connection-manager/src/main/webapp/img/avatar.jpg -------------------------------------------------------------------------------- /spring-boot-tutorial-connection-manager/src/main/webapp/img/message.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-connection-manager/src/main/webapp/img/message.jpg -------------------------------------------------------------------------------- /spring-boot-tutorial-connection-manager/src/main/webapp/js/tag-it.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-connection-manager/src/main/webapp/js/tag-it.min.js -------------------------------------------------------------------------------- /spring-boot-tutorial-context-root/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /spring-boot-tutorial-context-root/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-context-root/pom.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-context-root/src/main/webapp/WEB-INF/tiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-context-root/src/main/webapp/WEB-INF/tiles.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-context-root/src/main/webapp/WEB-INF/tiles/about.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-context-root/src/main/webapp/WEB-INF/tiles/about.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-context-root/src/main/webapp/WEB-INF/tiles/home.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-context-root/src/main/webapp/WEB-INF/tiles/home.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-context-root/src/main/webapp/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-context-root/src/main/webapp/css/bootstrap.min.css -------------------------------------------------------------------------------- /spring-boot-tutorial-context-root/src/main/webapp/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-context-root/src/main/webapp/css/main.css -------------------------------------------------------------------------------- /spring-boot-tutorial-context-root/src/main/webapp/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-context-root/src/main/webapp/js/bootstrap.min.js -------------------------------------------------------------------------------- /spring-boot-tutorial-crud-repository/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /spring-boot-tutorial-crud-repository/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-crud-repository/pom.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-crud-repository/src/main/webapp/WEB-INF/tiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-crud-repository/src/main/webapp/WEB-INF/tiles.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-crud-repository/src/main/webapp/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-crud-repository/src/main/webapp/css/bootstrap.min.css -------------------------------------------------------------------------------- /spring-boot-tutorial-crud-repository/src/main/webapp/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-crud-repository/src/main/webapp/css/main.css -------------------------------------------------------------------------------- /spring-boot-tutorial-crud-repository/src/main/webapp/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-crud-repository/src/main/webapp/js/bootstrap.min.js -------------------------------------------------------------------------------- /spring-boot-tutorial-custom-messages/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /spring-boot-tutorial-custom-messages/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-custom-messages/pom.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-custom-messages/src/main/webapp/WEB-INF/tiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-custom-messages/src/main/webapp/WEB-INF/tiles.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-custom-messages/src/main/webapp/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-custom-messages/src/main/webapp/css/bootstrap.min.css -------------------------------------------------------------------------------- /spring-boot-tutorial-custom-messages/src/main/webapp/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-custom-messages/src/main/webapp/css/main.css -------------------------------------------------------------------------------- /spring-boot-tutorial-custom-messages/src/main/webapp/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-custom-messages/src/main/webapp/js/bootstrap.min.js -------------------------------------------------------------------------------- /spring-boot-tutorial-custom-tags/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /spring-boot-tutorial-custom-tags/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-custom-tags/pom.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-custom-tags/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-custom-tags/src/main/resources/application.properties -------------------------------------------------------------------------------- /spring-boot-tutorial-custom-tags/src/main/webapp/WEB-INF/tiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-custom-tags/src/main/webapp/WEB-INF/tiles.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-custom-tags/src/main/webapp/WEB-INF/tiles/about.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-custom-tags/src/main/webapp/WEB-INF/tiles/about.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-custom-tags/src/main/webapp/WEB-INF/tiles/home.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-custom-tags/src/main/webapp/WEB-INF/tiles/home.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-custom-tags/src/main/webapp/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-custom-tags/src/main/webapp/css/bootstrap.min.css -------------------------------------------------------------------------------- /spring-boot-tutorial-custom-tags/src/main/webapp/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-custom-tags/src/main/webapp/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /spring-boot-tutorial-custom-tags/src/main/webapp/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-custom-tags/src/main/webapp/css/main.css -------------------------------------------------------------------------------- /spring-boot-tutorial-custom-tags/src/main/webapp/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-custom-tags/src/main/webapp/js/bootstrap.min.js -------------------------------------------------------------------------------- /spring-boot-tutorial-database-authentication/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /spring-boot-tutorial-database-authentication/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-database-authentication/pom.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-database-authentication/src/main/webapp/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-database-authentication/src/main/webapp/css/main.css -------------------------------------------------------------------------------- /spring-boot-tutorial-deleting/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /spring-boot-tutorial-deleting/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-deleting/pom.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-deleting/src/main/java/com/caveofprogramming/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-deleting/src/main/java/com/caveofprogramming/App.java -------------------------------------------------------------------------------- /spring-boot-tutorial-deleting/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-deleting/src/main/resources/application.properties -------------------------------------------------------------------------------- /spring-boot-tutorial-deleting/src/main/webapp/WEB-INF/layouts/default.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-deleting/src/main/webapp/WEB-INF/layouts/default.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-deleting/src/main/webapp/WEB-INF/tags/pagination.tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-deleting/src/main/webapp/WEB-INF/tags/pagination.tag -------------------------------------------------------------------------------- /spring-boot-tutorial-deleting/src/main/webapp/WEB-INF/tiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-deleting/src/main/webapp/WEB-INF/tiles.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-deleting/src/main/webapp/WEB-INF/tiles/about.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-deleting/src/main/webapp/WEB-INF/tiles/about.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-deleting/src/main/webapp/WEB-INF/tiles/addstatus.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-deleting/src/main/webapp/WEB-INF/tiles/addstatus.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-deleting/src/main/webapp/WEB-INF/tiles/home.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-deleting/src/main/webapp/WEB-INF/tiles/home.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-deleting/src/main/webapp/WEB-INF/tiles/viewstatus.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-deleting/src/main/webapp/WEB-INF/tiles/viewstatus.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-deleting/src/main/webapp/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-deleting/src/main/webapp/css/bootstrap.min.css -------------------------------------------------------------------------------- /spring-boot-tutorial-deleting/src/main/webapp/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-deleting/src/main/webapp/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /spring-boot-tutorial-deleting/src/main/webapp/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-deleting/src/main/webapp/css/main.css -------------------------------------------------------------------------------- /spring-boot-tutorial-deleting/src/main/webapp/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-deleting/src/main/webapp/js/bootstrap.min.js -------------------------------------------------------------------------------- /spring-boot-tutorial-displaying-data/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /spring-boot-tutorial-displaying-data/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-displaying-data/pom.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-displaying-data/src/main/webapp/WEB-INF/tiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-displaying-data/src/main/webapp/WEB-INF/tiles.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-displaying-data/src/main/webapp/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-displaying-data/src/main/webapp/css/bootstrap.min.css -------------------------------------------------------------------------------- /spring-boot-tutorial-displaying-data/src/main/webapp/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-displaying-data/src/main/webapp/css/main.css -------------------------------------------------------------------------------- /spring-boot-tutorial-displaying-data/src/main/webapp/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-displaying-data/src/main/webapp/js/bootstrap.min.js -------------------------------------------------------------------------------- /spring-boot-tutorial-domain-objects/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /spring-boot-tutorial-domain-objects/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-domain-objects/pom.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-domain-objects/src/main/webapp/WEB-INF/tiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-domain-objects/src/main/webapp/WEB-INF/tiles.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-domain-objects/src/main/webapp/WEB-INF/tiles/home.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-domain-objects/src/main/webapp/WEB-INF/tiles/home.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-domain-objects/src/main/webapp/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-domain-objects/src/main/webapp/css/bootstrap.min.css -------------------------------------------------------------------------------- /spring-boot-tutorial-domain-objects/src/main/webapp/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-domain-objects/src/main/webapp/css/main.css -------------------------------------------------------------------------------- /spring-boot-tutorial-domain-objects/src/main/webapp/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-domain-objects/src/main/webapp/js/bootstrap.min.js -------------------------------------------------------------------------------- /spring-boot-tutorial-edit-delete-links/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /spring-boot-tutorial-edit-delete-links/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-edit-delete-links/pom.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-edit-delete-links/src/main/webapp/WEB-INF/tiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-edit-delete-links/src/main/webapp/WEB-INF/tiles.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-edit-delete-links/src/main/webapp/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-edit-delete-links/src/main/webapp/css/main.css -------------------------------------------------------------------------------- /spring-boot-tutorial-edit-delete-links/src/main/webapp/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-edit-delete-links/src/main/webapp/js/bootstrap.min.js -------------------------------------------------------------------------------- /spring-boot-tutorial-editing/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /spring-boot-tutorial-editing/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-editing/pom.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-editing/src/main/java/com/caveofprogramming/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-editing/src/main/java/com/caveofprogramming/App.java -------------------------------------------------------------------------------- /spring-boot-tutorial-editing/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-editing/src/main/resources/application.properties -------------------------------------------------------------------------------- /spring-boot-tutorial-editing/src/main/webapp/WEB-INF/layouts/default.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-editing/src/main/webapp/WEB-INF/layouts/default.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-editing/src/main/webapp/WEB-INF/tags/pagination.tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-editing/src/main/webapp/WEB-INF/tags/pagination.tag -------------------------------------------------------------------------------- /spring-boot-tutorial-editing/src/main/webapp/WEB-INF/tiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-editing/src/main/webapp/WEB-INF/tiles.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-editing/src/main/webapp/WEB-INF/tiles/about.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-editing/src/main/webapp/WEB-INF/tiles/about.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-editing/src/main/webapp/WEB-INF/tiles/addstatus.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-editing/src/main/webapp/WEB-INF/tiles/addstatus.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-editing/src/main/webapp/WEB-INF/tiles/editstatus.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-editing/src/main/webapp/WEB-INF/tiles/editstatus.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-editing/src/main/webapp/WEB-INF/tiles/home.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-editing/src/main/webapp/WEB-INF/tiles/home.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-editing/src/main/webapp/WEB-INF/tiles/viewstatus.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-editing/src/main/webapp/WEB-INF/tiles/viewstatus.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-editing/src/main/webapp/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-editing/src/main/webapp/css/bootstrap.min.css -------------------------------------------------------------------------------- /spring-boot-tutorial-editing/src/main/webapp/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-editing/src/main/webapp/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /spring-boot-tutorial-editing/src/main/webapp/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-editing/src/main/webapp/css/main.css -------------------------------------------------------------------------------- /spring-boot-tutorial-editing/src/main/webapp/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-editing/src/main/webapp/js/bootstrap.min.js -------------------------------------------------------------------------------- /spring-boot-tutorial-email-validation/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /spring-boot-tutorial-email-validation/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-email-validation/pom.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-email-validation/src/main/webapp/WEB-INF/tiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-email-validation/src/main/webapp/WEB-INF/tiles.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-email-validation/src/main/webapp/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-email-validation/src/main/webapp/css/main.css -------------------------------------------------------------------------------- /spring-boot-tutorial-email-validation/src/main/webapp/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-email-validation/src/main/webapp/js/bootstrap.min.js -------------------------------------------------------------------------------- /spring-boot-tutorial-finding-by-order/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /spring-boot-tutorial-finding-by-order/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-finding-by-order/pom.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-finding-by-order/src/main/webapp/WEB-INF/tiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-finding-by-order/src/main/webapp/WEB-INF/tiles.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-finding-by-order/src/main/webapp/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-finding-by-order/src/main/webapp/css/main.css -------------------------------------------------------------------------------- /spring-boot-tutorial-finding-by-order/src/main/webapp/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-finding-by-order/src/main/webapp/js/bootstrap.min.js -------------------------------------------------------------------------------- /spring-boot-tutorial-form-validation/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /spring-boot-tutorial-form-validation/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-form-validation/pom.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-form-validation/src/main/webapp/WEB-INF/tiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-form-validation/src/main/webapp/WEB-INF/tiles.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-form-validation/src/main/webapp/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-form-validation/src/main/webapp/css/bootstrap.min.css -------------------------------------------------------------------------------- /spring-boot-tutorial-form-validation/src/main/webapp/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-form-validation/src/main/webapp/css/main.css -------------------------------------------------------------------------------- /spring-boot-tutorial-form-validation/src/main/webapp/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-form-validation/src/main/webapp/js/bootstrap.min.js -------------------------------------------------------------------------------- /spring-boot-tutorial-formatting-dates/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /spring-boot-tutorial-formatting-dates/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-formatting-dates/pom.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-formatting-dates/src/main/webapp/WEB-INF/tiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-formatting-dates/src/main/webapp/WEB-INF/tiles.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-formatting-dates/src/main/webapp/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-formatting-dates/src/main/webapp/css/main.css -------------------------------------------------------------------------------- /spring-boot-tutorial-formatting-dates/src/main/webapp/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-formatting-dates/src/main/webapp/js/bootstrap.min.js -------------------------------------------------------------------------------- /spring-boot-tutorial-handling-errors/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /spring-boot-tutorial-handling-errors/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-handling-errors/pom.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-handling-errors/src/main/java/com/caveofprogramming/model/TokenType.java: -------------------------------------------------------------------------------- 1 | package com.caveofprogramming.model; 2 | 3 | public enum TokenType { 4 | REGISTRATION, 5 | PASSWORD_RESET 6 | } 7 | -------------------------------------------------------------------------------- /spring-boot-tutorial-handling-errors/src/main/webapp/WEB-INF/tiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-handling-errors/src/main/webapp/WEB-INF/tiles.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-handling-errors/src/main/webapp/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-handling-errors/src/main/webapp/css/bootstrap.min.css -------------------------------------------------------------------------------- /spring-boot-tutorial-handling-errors/src/main/webapp/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-handling-errors/src/main/webapp/css/main.css -------------------------------------------------------------------------------- /spring-boot-tutorial-handling-errors/src/main/webapp/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-handling-errors/src/main/webapp/js/bootstrap.min.js -------------------------------------------------------------------------------- /spring-boot-tutorial-improving-the-app/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /spring-boot-tutorial-improving-the-app/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-improving-the-app/pom.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-improving-the-app/src/main/webapp/WEB-INF/tiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-improving-the-app/src/main/webapp/WEB-INF/tiles.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-improving-the-app/src/main/webapp/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-improving-the-app/src/main/webapp/css/main.css -------------------------------------------------------------------------------- /spring-boot-tutorial-improving-the-app/src/main/webapp/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-improving-the-app/src/main/webapp/js/bootstrap.min.js -------------------------------------------------------------------------------- /spring-boot-tutorial-interests/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /spring-boot-tutorial-interests/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-interests/pom.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-interests/src/main/java/com/caveofprogramming/model/TokenType.java: -------------------------------------------------------------------------------- 1 | package com.caveofprogramming.model; 2 | 3 | public enum TokenType { 4 | REGISTRATION, 5 | PASSWORD_RESET 6 | } 7 | -------------------------------------------------------------------------------- /spring-boot-tutorial-interests/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-interests/src/main/resources/application.properties -------------------------------------------------------------------------------- /spring-boot-tutorial-interests/src/main/webapp/WEB-INF/layouts/default.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-interests/src/main/webapp/WEB-INF/layouts/default.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-interests/src/main/webapp/WEB-INF/tags/pagination.tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-interests/src/main/webapp/WEB-INF/tags/pagination.tag -------------------------------------------------------------------------------- /spring-boot-tutorial-interests/src/main/webapp/WEB-INF/tiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-interests/src/main/webapp/WEB-INF/tiles.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-interests/src/main/webapp/WEB-INF/tiles/about.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-interests/src/main/webapp/WEB-INF/tiles/about.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-interests/src/main/webapp/WEB-INF/tiles/addstatus.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-interests/src/main/webapp/WEB-INF/tiles/addstatus.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-interests/src/main/webapp/WEB-INF/tiles/exception.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-interests/src/main/webapp/WEB-INF/tiles/exception.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-interests/src/main/webapp/WEB-INF/tiles/home.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-interests/src/main/webapp/WEB-INF/tiles/home.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-interests/src/main/webapp/WEB-INF/tiles/login.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-interests/src/main/webapp/WEB-INF/tiles/login.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-interests/src/main/webapp/WEB-INF/tiles/message.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-interests/src/main/webapp/WEB-INF/tiles/message.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-interests/src/main/webapp/WEB-INF/tiles/profile.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-interests/src/main/webapp/WEB-INF/tiles/profile.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-interests/src/main/webapp/WEB-INF/tiles/register.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-interests/src/main/webapp/WEB-INF/tiles/register.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-interests/src/main/webapp/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-interests/src/main/webapp/css/bootstrap.min.css -------------------------------------------------------------------------------- /spring-boot-tutorial-interests/src/main/webapp/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-interests/src/main/webapp/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /spring-boot-tutorial-interests/src/main/webapp/css/jquery.tagit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-interests/src/main/webapp/css/jquery.tagit.css -------------------------------------------------------------------------------- /spring-boot-tutorial-interests/src/main/webapp/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-interests/src/main/webapp/css/main.css -------------------------------------------------------------------------------- /spring-boot-tutorial-interests/src/main/webapp/img/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-interests/src/main/webapp/img/avatar.jpg -------------------------------------------------------------------------------- /spring-boot-tutorial-interests/src/main/webapp/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-interests/src/main/webapp/js/bootstrap.min.js -------------------------------------------------------------------------------- /spring-boot-tutorial-interests/src/main/webapp/js/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-interests/src/main/webapp/js/jquery-ui.min.js -------------------------------------------------------------------------------- /spring-boot-tutorial-interests/src/main/webapp/js/tag-it.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-interests/src/main/webapp/js/tag-it.min.js -------------------------------------------------------------------------------- /spring-boot-tutorial-jsps/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /spring-boot-tutorial-jsps/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-jsps/pom.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-jsps/src/main/java/com/caveofprogramming/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-jsps/src/main/java/com/caveofprogramming/App.java -------------------------------------------------------------------------------- /spring-boot-tutorial-jsps/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-jsps/src/main/resources/application.properties -------------------------------------------------------------------------------- /spring-boot-tutorial-jsps/src/main/webapp/WEB-INF/jsps/home.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-jsps/src/main/webapp/WEB-INF/jsps/home.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-junit/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /spring-boot-tutorial-junit/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-junit/pom.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-junit/src/main/java/com/caveofprogramming/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-junit/src/main/java/com/caveofprogramming/App.java -------------------------------------------------------------------------------- /spring-boot-tutorial-junit/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-junit/src/main/resources/application.properties -------------------------------------------------------------------------------- /spring-boot-tutorial-junit/src/main/webapp/WEB-INF/layouts/default.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-junit/src/main/webapp/WEB-INF/layouts/default.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-junit/src/main/webapp/WEB-INF/tiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-junit/src/main/webapp/WEB-INF/tiles.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-junit/src/main/webapp/WEB-INF/tiles/about.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-junit/src/main/webapp/WEB-INF/tiles/about.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-junit/src/main/webapp/WEB-INF/tiles/addstatus.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-junit/src/main/webapp/WEB-INF/tiles/addstatus.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-junit/src/main/webapp/WEB-INF/tiles/home.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-junit/src/main/webapp/WEB-INF/tiles/home.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-junit/src/main/webapp/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-junit/src/main/webapp/css/bootstrap.min.css -------------------------------------------------------------------------------- /spring-boot-tutorial-junit/src/main/webapp/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-junit/src/main/webapp/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /spring-boot-tutorial-junit/src/main/webapp/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-junit/src/main/webapp/css/main.css -------------------------------------------------------------------------------- /spring-boot-tutorial-junit/src/main/webapp/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-junit/src/main/webapp/js/bootstrap.min.js -------------------------------------------------------------------------------- /spring-boot-tutorial-logging-out/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /spring-boot-tutorial-logging-out/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-logging-out/pom.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-logging-out/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-logging-out/src/main/resources/application.properties -------------------------------------------------------------------------------- /spring-boot-tutorial-logging-out/src/main/webapp/WEB-INF/tiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-logging-out/src/main/webapp/WEB-INF/tiles.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-logging-out/src/main/webapp/WEB-INF/tiles/about.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-logging-out/src/main/webapp/WEB-INF/tiles/about.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-logging-out/src/main/webapp/WEB-INF/tiles/home.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-logging-out/src/main/webapp/WEB-INF/tiles/home.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-logging-out/src/main/webapp/WEB-INF/tiles/login.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-logging-out/src/main/webapp/WEB-INF/tiles/login.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-logging-out/src/main/webapp/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-logging-out/src/main/webapp/css/bootstrap.min.css -------------------------------------------------------------------------------- /spring-boot-tutorial-logging-out/src/main/webapp/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-logging-out/src/main/webapp/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /spring-boot-tutorial-logging-out/src/main/webapp/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-logging-out/src/main/webapp/css/main.css -------------------------------------------------------------------------------- /spring-boot-tutorial-logging-out/src/main/webapp/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-logging-out/src/main/webapp/js/bootstrap.min.js -------------------------------------------------------------------------------- /spring-boot-tutorial-login-forms/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /spring-boot-tutorial-login-forms/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-login-forms/pom.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-login-forms/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-login-forms/src/main/resources/application.properties -------------------------------------------------------------------------------- /spring-boot-tutorial-login-forms/src/main/webapp/WEB-INF/tiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-login-forms/src/main/webapp/WEB-INF/tiles.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-login-forms/src/main/webapp/WEB-INF/tiles/about.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-login-forms/src/main/webapp/WEB-INF/tiles/about.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-login-forms/src/main/webapp/WEB-INF/tiles/home.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-login-forms/src/main/webapp/WEB-INF/tiles/home.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-login-forms/src/main/webapp/WEB-INF/tiles/login.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-login-forms/src/main/webapp/WEB-INF/tiles/login.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-login-forms/src/main/webapp/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-login-forms/src/main/webapp/css/bootstrap.min.css -------------------------------------------------------------------------------- /spring-boot-tutorial-login-forms/src/main/webapp/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-login-forms/src/main/webapp/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /spring-boot-tutorial-login-forms/src/main/webapp/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-login-forms/src/main/webapp/css/main.css -------------------------------------------------------------------------------- /spring-boot-tutorial-login-forms/src/main/webapp/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-login-forms/src/main/webapp/js/bootstrap.min.js -------------------------------------------------------------------------------- /spring-boot-tutorial-model-and-view/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /spring-boot-tutorial-model-and-view/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-model-and-view/pom.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-model-and-view/src/main/webapp/WEB-INF/tiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-model-and-view/src/main/webapp/WEB-INF/tiles.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-model-and-view/src/main/webapp/WEB-INF/tiles/home.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-model-and-view/src/main/webapp/WEB-INF/tiles/home.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-model-and-view/src/main/webapp/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-model-and-view/src/main/webapp/css/bootstrap.min.css -------------------------------------------------------------------------------- /spring-boot-tutorial-model-and-view/src/main/webapp/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-model-and-view/src/main/webapp/css/main.css -------------------------------------------------------------------------------- /spring-boot-tutorial-model-and-view/src/main/webapp/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-model-and-view/src/main/webapp/js/bootstrap.min.js -------------------------------------------------------------------------------- /spring-boot-tutorial-model-attributes/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /spring-boot-tutorial-model-attributes/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-model-attributes/pom.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-model-attributes/src/main/webapp/WEB-INF/tiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-model-attributes/src/main/webapp/WEB-INF/tiles.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-model-attributes/src/main/webapp/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-model-attributes/src/main/webapp/css/main.css -------------------------------------------------------------------------------- /spring-boot-tutorial-model-attributes/src/main/webapp/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-model-attributes/src/main/webapp/js/bootstrap.min.js -------------------------------------------------------------------------------- /spring-boot-tutorial-multiple-controllers/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /spring-boot-tutorial-multiple-controllers/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-multiple-controllers/pom.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-navbar/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /spring-boot-tutorial-navbar/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-navbar/pom.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-navbar/src/main/java/com/caveofprogramming/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-navbar/src/main/java/com/caveofprogramming/App.java -------------------------------------------------------------------------------- /spring-boot-tutorial-navbar/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-navbar/src/main/resources/application.properties -------------------------------------------------------------------------------- /spring-boot-tutorial-navbar/src/main/webapp/WEB-INF/layouts/default.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-navbar/src/main/webapp/WEB-INF/layouts/default.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-navbar/src/main/webapp/WEB-INF/tiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-navbar/src/main/webapp/WEB-INF/tiles.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-navbar/src/main/webapp/WEB-INF/tiles/about.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-navbar/src/main/webapp/WEB-INF/tiles/about.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-navbar/src/main/webapp/WEB-INF/tiles/home.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-navbar/src/main/webapp/WEB-INF/tiles/home.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-navbar/src/main/webapp/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-navbar/src/main/webapp/css/bootstrap.min.css -------------------------------------------------------------------------------- /spring-boot-tutorial-navbar/src/main/webapp/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-navbar/src/main/webapp/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /spring-boot-tutorial-navbar/src/main/webapp/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-navbar/src/main/webapp/js/bootstrap.min.js -------------------------------------------------------------------------------- /spring-boot-tutorial-page-number-blocks/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /spring-boot-tutorial-page-number-blocks/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-page-number-blocks/pom.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-page-number-blocks/src/main/webapp/WEB-INF/tiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-page-number-blocks/src/main/webapp/WEB-INF/tiles.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-page-number-blocks/src/main/webapp/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-page-number-blocks/src/main/webapp/css/main.css -------------------------------------------------------------------------------- /spring-boot-tutorial-page-numbers/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /spring-boot-tutorial-page-numbers/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-page-numbers/pom.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-page-numbers/src/main/webapp/WEB-INF/tiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-page-numbers/src/main/webapp/WEB-INF/tiles.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-page-numbers/src/main/webapp/WEB-INF/tiles/about.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-page-numbers/src/main/webapp/WEB-INF/tiles/about.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-page-numbers/src/main/webapp/WEB-INF/tiles/home.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-page-numbers/src/main/webapp/WEB-INF/tiles/home.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-page-numbers/src/main/webapp/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-page-numbers/src/main/webapp/css/bootstrap.min.css -------------------------------------------------------------------------------- /spring-boot-tutorial-page-numbers/src/main/webapp/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-page-numbers/src/main/webapp/css/main.css -------------------------------------------------------------------------------- /spring-boot-tutorial-page-numbers/src/main/webapp/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-page-numbers/src/main/webapp/js/bootstrap.min.js -------------------------------------------------------------------------------- /spring-boot-tutorial-paging-and-sorting/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /spring-boot-tutorial-paging-and-sorting/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-paging-and-sorting/pom.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-paging-and-sorting/src/main/webapp/WEB-INF/tiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-paging-and-sorting/src/main/webapp/WEB-INF/tiles.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-paging-and-sorting/src/main/webapp/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-paging-and-sorting/src/main/webapp/css/main.css -------------------------------------------------------------------------------- /spring-boot-tutorial-password-encryption/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /spring-boot-tutorial-password-encryption/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-password-encryption/pom.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-password-encryption/src/main/webapp/WEB-INF/tiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-password-encryption/src/main/webapp/WEB-INF/tiles.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-password-encryption/src/main/webapp/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-password-encryption/src/main/webapp/css/main.css -------------------------------------------------------------------------------- /spring-boot-tutorial-profiles/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /spring-boot-tutorial-profiles/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-profiles/pom.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-profiles/src/main/java/com/caveofprogramming/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-profiles/src/main/java/com/caveofprogramming/App.java -------------------------------------------------------------------------------- /spring-boot-tutorial-profiles/src/main/java/com/caveofprogramming/model/TokenType.java: -------------------------------------------------------------------------------- 1 | package com.caveofprogramming.model; 2 | 3 | public enum TokenType { 4 | REGISTRATION, 5 | PASSWORD_RESET 6 | } 7 | -------------------------------------------------------------------------------- /spring-boot-tutorial-profiles/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-profiles/src/main/resources/application.properties -------------------------------------------------------------------------------- /spring-boot-tutorial-profiles/src/main/webapp/WEB-INF/layouts/default.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-profiles/src/main/webapp/WEB-INF/layouts/default.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-profiles/src/main/webapp/WEB-INF/tags/pagination.tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-profiles/src/main/webapp/WEB-INF/tags/pagination.tag -------------------------------------------------------------------------------- /spring-boot-tutorial-profiles/src/main/webapp/WEB-INF/tiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-profiles/src/main/webapp/WEB-INF/tiles.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-profiles/src/main/webapp/WEB-INF/tiles/about.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-profiles/src/main/webapp/WEB-INF/tiles/about.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-profiles/src/main/webapp/WEB-INF/tiles/addstatus.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-profiles/src/main/webapp/WEB-INF/tiles/addstatus.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-profiles/src/main/webapp/WEB-INF/tiles/editstatus.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-profiles/src/main/webapp/WEB-INF/tiles/editstatus.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-profiles/src/main/webapp/WEB-INF/tiles/exception.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-profiles/src/main/webapp/WEB-INF/tiles/exception.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-profiles/src/main/webapp/WEB-INF/tiles/home.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-profiles/src/main/webapp/WEB-INF/tiles/home.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-profiles/src/main/webapp/WEB-INF/tiles/login.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-profiles/src/main/webapp/WEB-INF/tiles/login.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-profiles/src/main/webapp/WEB-INF/tiles/message.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-profiles/src/main/webapp/WEB-INF/tiles/message.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-profiles/src/main/webapp/WEB-INF/tiles/profile.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-profiles/src/main/webapp/WEB-INF/tiles/profile.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-profiles/src/main/webapp/WEB-INF/tiles/register.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-profiles/src/main/webapp/WEB-INF/tiles/register.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-profiles/src/main/webapp/WEB-INF/tiles/viewstatus.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-profiles/src/main/webapp/WEB-INF/tiles/viewstatus.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-profiles/src/main/webapp/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-profiles/src/main/webapp/css/bootstrap.min.css -------------------------------------------------------------------------------- /spring-boot-tutorial-profiles/src/main/webapp/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-profiles/src/main/webapp/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /spring-boot-tutorial-profiles/src/main/webapp/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-profiles/src/main/webapp/css/main.css -------------------------------------------------------------------------------- /spring-boot-tutorial-profiles/src/main/webapp/img/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-profiles/src/main/webapp/img/avatar.jpg -------------------------------------------------------------------------------- /spring-boot-tutorial-profiles/src/main/webapp/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-profiles/src/main/webapp/js/bootstrap.min.js -------------------------------------------------------------------------------- /spring-boot-tutorial-registration-form/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /spring-boot-tutorial-registration-form/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-registration-form/pom.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-registration-form/src/main/webapp/WEB-INF/tiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-registration-form/src/main/webapp/WEB-INF/tiles.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-registration-form/src/main/webapp/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-registration-form/src/main/webapp/css/main.css -------------------------------------------------------------------------------- /spring-boot-tutorial-registration-form/src/main/webapp/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-registration-form/src/main/webapp/js/bootstrap.min.js -------------------------------------------------------------------------------- /spring-boot-tutorial-request-parameters/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /spring-boot-tutorial-request-parameters/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-request-parameters/pom.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-request-parameters/src/main/webapp/WEB-INF/tiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-request-parameters/src/main/webapp/WEB-INF/tiles.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-request-parameters/src/main/webapp/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-request-parameters/src/main/webapp/css/main.css -------------------------------------------------------------------------------- /spring-boot-tutorial-roles/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /spring-boot-tutorial-roles/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-roles/pom.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-roles/src/main/java/com/caveofprogramming/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-roles/src/main/java/com/caveofprogramming/App.java -------------------------------------------------------------------------------- /spring-boot-tutorial-roles/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-roles/src/main/resources/application.properties -------------------------------------------------------------------------------- /spring-boot-tutorial-roles/src/main/webapp/WEB-INF/layouts/default.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-roles/src/main/webapp/WEB-INF/layouts/default.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-roles/src/main/webapp/WEB-INF/tags/pagination.tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-roles/src/main/webapp/WEB-INF/tags/pagination.tag -------------------------------------------------------------------------------- /spring-boot-tutorial-roles/src/main/webapp/WEB-INF/tiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-roles/src/main/webapp/WEB-INF/tiles.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-roles/src/main/webapp/WEB-INF/tiles/about.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-roles/src/main/webapp/WEB-INF/tiles/about.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-roles/src/main/webapp/WEB-INF/tiles/addstatus.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-roles/src/main/webapp/WEB-INF/tiles/addstatus.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-roles/src/main/webapp/WEB-INF/tiles/editstatus.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-roles/src/main/webapp/WEB-INF/tiles/editstatus.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-roles/src/main/webapp/WEB-INF/tiles/home.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-roles/src/main/webapp/WEB-INF/tiles/home.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-roles/src/main/webapp/WEB-INF/tiles/login.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-roles/src/main/webapp/WEB-INF/tiles/login.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-roles/src/main/webapp/WEB-INF/tiles/register.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-roles/src/main/webapp/WEB-INF/tiles/register.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-roles/src/main/webapp/WEB-INF/tiles/viewstatus.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-roles/src/main/webapp/WEB-INF/tiles/viewstatus.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-roles/src/main/webapp/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-roles/src/main/webapp/css/bootstrap.min.css -------------------------------------------------------------------------------- /spring-boot-tutorial-roles/src/main/webapp/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-roles/src/main/webapp/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /spring-boot-tutorial-roles/src/main/webapp/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-roles/src/main/webapp/css/main.css -------------------------------------------------------------------------------- /spring-boot-tutorial-roles/src/main/webapp/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-roles/src/main/webapp/js/bootstrap.min.js -------------------------------------------------------------------------------- /spring-boot-tutorial-saving-edits/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /spring-boot-tutorial-saving-edits/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-saving-edits/pom.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-saving-edits/src/main/webapp/WEB-INF/tiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-saving-edits/src/main/webapp/WEB-INF/tiles.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-saving-edits/src/main/webapp/WEB-INF/tiles/about.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-saving-edits/src/main/webapp/WEB-INF/tiles/about.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-saving-edits/src/main/webapp/WEB-INF/tiles/home.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-saving-edits/src/main/webapp/WEB-INF/tiles/home.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-saving-edits/src/main/webapp/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-saving-edits/src/main/webapp/css/bootstrap.min.css -------------------------------------------------------------------------------- /spring-boot-tutorial-saving-edits/src/main/webapp/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-saving-edits/src/main/webapp/css/main.css -------------------------------------------------------------------------------- /spring-boot-tutorial-saving-edits/src/main/webapp/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-saving-edits/src/main/webapp/js/bootstrap.min.js -------------------------------------------------------------------------------- /spring-boot-tutorial-search-upgraded-temp/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | /bin/ 3 | -------------------------------------------------------------------------------- /spring-boot-tutorial-search-upgraded-temp/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-search-upgraded-temp/.project -------------------------------------------------------------------------------- /spring-boot-tutorial-search-upgraded-temp/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-search-upgraded-temp/pom.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-search-upgraded-temp/src/main/webapp/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-search-upgraded-temp/src/main/webapp/css/main.css -------------------------------------------------------------------------------- /spring-boot-tutorial-search-upgraded-temp/src/main/webapp/img/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-search-upgraded-temp/src/main/webapp/img/avatar.jpg -------------------------------------------------------------------------------- /spring-boot-tutorial-search-upgraded-temp/src/main/webapp/js/tag-it.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-search-upgraded-temp/src/main/webapp/js/tag-it.min.js -------------------------------------------------------------------------------- /spring-boot-tutorial-search/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /spring-boot-tutorial-search/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-search/.project -------------------------------------------------------------------------------- /spring-boot-tutorial-search/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-search/pom.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-search/src/main/java/com/caveofprogramming/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-search/src/main/java/com/caveofprogramming/App.java -------------------------------------------------------------------------------- /spring-boot-tutorial-search/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-search/src/main/resources/application.properties -------------------------------------------------------------------------------- /spring-boot-tutorial-search/src/main/resources/mail/verifyemail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-search/src/main/resources/mail/verifyemail.html -------------------------------------------------------------------------------- /spring-boot-tutorial-search/src/main/webapp/WEB-INF/layouts/default.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-search/src/main/webapp/WEB-INF/layouts/default.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-search/src/main/webapp/WEB-INF/tags/pagination.tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-search/src/main/webapp/WEB-INF/tags/pagination.tag -------------------------------------------------------------------------------- /spring-boot-tutorial-search/src/main/webapp/WEB-INF/tiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-search/src/main/webapp/WEB-INF/tiles.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-search/src/main/webapp/WEB-INF/tiles/about.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-search/src/main/webapp/WEB-INF/tiles/about.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-search/src/main/webapp/WEB-INF/tiles/addstatus.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-search/src/main/webapp/WEB-INF/tiles/addstatus.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-search/src/main/webapp/WEB-INF/tiles/editstatus.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-search/src/main/webapp/WEB-INF/tiles/editstatus.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-search/src/main/webapp/WEB-INF/tiles/exception.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-search/src/main/webapp/WEB-INF/tiles/exception.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-search/src/main/webapp/WEB-INF/tiles/home.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-search/src/main/webapp/WEB-INF/tiles/home.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-search/src/main/webapp/WEB-INF/tiles/login.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-search/src/main/webapp/WEB-INF/tiles/login.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-search/src/main/webapp/WEB-INF/tiles/message.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-search/src/main/webapp/WEB-INF/tiles/message.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-search/src/main/webapp/WEB-INF/tiles/profile.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-search/src/main/webapp/WEB-INF/tiles/profile.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-search/src/main/webapp/WEB-INF/tiles/register.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-search/src/main/webapp/WEB-INF/tiles/register.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-search/src/main/webapp/WEB-INF/tiles/results.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-search/src/main/webapp/WEB-INF/tiles/results.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-search/src/main/webapp/WEB-INF/tiles/verifyemail.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-search/src/main/webapp/WEB-INF/tiles/verifyemail.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-search/src/main/webapp/WEB-INF/tiles/viewstatus.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-search/src/main/webapp/WEB-INF/tiles/viewstatus.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-search/src/main/webapp/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-search/src/main/webapp/css/bootstrap.min.css -------------------------------------------------------------------------------- /spring-boot-tutorial-search/src/main/webapp/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-search/src/main/webapp/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /spring-boot-tutorial-search/src/main/webapp/css/jquery.tagit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-search/src/main/webapp/css/jquery.tagit.css -------------------------------------------------------------------------------- /spring-boot-tutorial-search/src/main/webapp/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-search/src/main/webapp/css/main.css -------------------------------------------------------------------------------- /spring-boot-tutorial-search/src/main/webapp/img/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-search/src/main/webapp/img/avatar.jpg -------------------------------------------------------------------------------- /spring-boot-tutorial-search/src/main/webapp/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-search/src/main/webapp/js/bootstrap.min.js -------------------------------------------------------------------------------- /spring-boot-tutorial-search/src/main/webapp/js/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-search/src/main/webapp/js/jquery-ui.min.js -------------------------------------------------------------------------------- /spring-boot-tutorial-search/src/main/webapp/js/tag-it.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-search/src/main/webapp/js/tag-it.min.js -------------------------------------------------------------------------------- /spring-boot-tutorial-security-rules/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /spring-boot-tutorial-security-rules/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-security-rules/pom.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-security-rules/src/main/webapp/WEB-INF/tiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-security-rules/src/main/webapp/WEB-INF/tiles.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-security-rules/src/main/webapp/WEB-INF/tiles/home.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-security-rules/src/main/webapp/WEB-INF/tiles/home.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-security-rules/src/main/webapp/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-security-rules/src/main/webapp/css/bootstrap.min.css -------------------------------------------------------------------------------- /spring-boot-tutorial-security-rules/src/main/webapp/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-security-rules/src/main/webapp/css/main.css -------------------------------------------------------------------------------- /spring-boot-tutorial-security-rules/src/main/webapp/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-security-rules/src/main/webapp/js/bootstrap.min.js -------------------------------------------------------------------------------- /spring-boot-tutorial-security-tags/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /spring-boot-tutorial-security-tags/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-security-tags/pom.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-security-tags/src/main/webapp/WEB-INF/tiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-security-tags/src/main/webapp/WEB-INF/tiles.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-security-tags/src/main/webapp/WEB-INF/tiles/about.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-security-tags/src/main/webapp/WEB-INF/tiles/about.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-security-tags/src/main/webapp/WEB-INF/tiles/home.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-security-tags/src/main/webapp/WEB-INF/tiles/home.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-security-tags/src/main/webapp/WEB-INF/tiles/login.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-security-tags/src/main/webapp/WEB-INF/tiles/login.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-security-tags/src/main/webapp/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-security-tags/src/main/webapp/css/bootstrap.min.css -------------------------------------------------------------------------------- /spring-boot-tutorial-security-tags/src/main/webapp/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-security-tags/src/main/webapp/css/main.css -------------------------------------------------------------------------------- /spring-boot-tutorial-security-tags/src/main/webapp/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-security-tags/src/main/webapp/js/bootstrap.min.js -------------------------------------------------------------------------------- /spring-boot-tutorial-sending-email/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /spring-boot-tutorial-sending-email/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-sending-email/pom.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-sending-email/src/main/webapp/WEB-INF/tiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-sending-email/src/main/webapp/WEB-INF/tiles.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-sending-email/src/main/webapp/WEB-INF/tiles/about.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-sending-email/src/main/webapp/WEB-INF/tiles/about.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-sending-email/src/main/webapp/WEB-INF/tiles/home.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-sending-email/src/main/webapp/WEB-INF/tiles/home.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-sending-email/src/main/webapp/WEB-INF/tiles/login.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-sending-email/src/main/webapp/WEB-INF/tiles/login.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-sending-email/src/main/webapp/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-sending-email/src/main/webapp/css/bootstrap.min.css -------------------------------------------------------------------------------- /spring-boot-tutorial-sending-email/src/main/webapp/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-sending-email/src/main/webapp/css/main.css -------------------------------------------------------------------------------- /spring-boot-tutorial-sending-email/src/main/webapp/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-sending-email/src/main/webapp/js/bootstrap.min.js -------------------------------------------------------------------------------- /spring-boot-tutorial-sending-messages/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-sending-messages/.classpath -------------------------------------------------------------------------------- /spring-boot-tutorial-sending-messages/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /spring-boot-tutorial-sending-messages/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-sending-messages/.project -------------------------------------------------------------------------------- /spring-boot-tutorial-sending-messages/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-sending-messages/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /spring-boot-tutorial-sending-messages/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-sending-messages/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /spring-boot-tutorial-sending-messages/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /spring-boot-tutorial-sending-messages/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-sending-messages/pom.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-sending-messages/src/main/resources/test.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-sending-messages/src/main/resources/test.properties -------------------------------------------------------------------------------- /spring-boot-tutorial-sending-messages/src/main/webapp/WEB-INF/tiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-sending-messages/src/main/webapp/WEB-INF/tiles.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-sending-messages/src/main/webapp/css/jquery.tagit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-sending-messages/src/main/webapp/css/jquery.tagit.css -------------------------------------------------------------------------------- /spring-boot-tutorial-sending-messages/src/main/webapp/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-sending-messages/src/main/webapp/css/main.css -------------------------------------------------------------------------------- /spring-boot-tutorial-sending-messages/src/main/webapp/img/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-sending-messages/src/main/webapp/img/avatar.jpg -------------------------------------------------------------------------------- /spring-boot-tutorial-sending-messages/src/main/webapp/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-sending-messages/src/main/webapp/js/bootstrap.min.js -------------------------------------------------------------------------------- /spring-boot-tutorial-sending-messages/src/main/webapp/js/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-sending-messages/src/main/webapp/js/jquery-ui.min.js -------------------------------------------------------------------------------- /spring-boot-tutorial-sending-messages/src/main/webapp/js/tag-it.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-sending-messages/src/main/webapp/js/tag-it.min.js -------------------------------------------------------------------------------- /spring-boot-tutorial-service-layer/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /spring-boot-tutorial-service-layer/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-service-layer/pom.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-service-layer/src/main/webapp/WEB-INF/tiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-service-layer/src/main/webapp/WEB-INF/tiles.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-service-layer/src/main/webapp/WEB-INF/tiles/about.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-service-layer/src/main/webapp/WEB-INF/tiles/about.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-service-layer/src/main/webapp/WEB-INF/tiles/home.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-service-layer/src/main/webapp/WEB-INF/tiles/home.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-service-layer/src/main/webapp/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-service-layer/src/main/webapp/css/bootstrap.min.css -------------------------------------------------------------------------------- /spring-boot-tutorial-service-layer/src/main/webapp/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-service-layer/src/main/webapp/css/main.css -------------------------------------------------------------------------------- /spring-boot-tutorial-service-layer/src/main/webapp/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-service-layer/src/main/webapp/js/bootstrap.min.js -------------------------------------------------------------------------------- /spring-boot-tutorial-static-resources/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /spring-boot-tutorial-static-resources/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-static-resources/pom.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-static-resources/src/main/webapp/WEB-INF/tiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-static-resources/src/main/webapp/WEB-INF/tiles.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-static-resources/src/main/webapp/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-static-resources/src/main/webapp/js/bootstrap.min.js -------------------------------------------------------------------------------- /spring-boot-tutorial-styling-navbar/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /spring-boot-tutorial-styling-navbar/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-styling-navbar/pom.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-styling-navbar/src/main/webapp/WEB-INF/tiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-styling-navbar/src/main/webapp/WEB-INF/tiles.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-styling-navbar/src/main/webapp/WEB-INF/tiles/home.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-styling-navbar/src/main/webapp/WEB-INF/tiles/home.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-styling-navbar/src/main/webapp/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-styling-navbar/src/main/webapp/css/bootstrap.min.css -------------------------------------------------------------------------------- /spring-boot-tutorial-styling-navbar/src/main/webapp/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-styling-navbar/src/main/webapp/css/main.css -------------------------------------------------------------------------------- /spring-boot-tutorial-styling-navbar/src/main/webapp/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-styling-navbar/src/main/webapp/js/bootstrap.min.js -------------------------------------------------------------------------------- /spring-boot-tutorial-submitting-forms/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /spring-boot-tutorial-submitting-forms/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-submitting-forms/pom.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-submitting-forms/src/main/webapp/WEB-INF/tiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-submitting-forms/src/main/webapp/WEB-INF/tiles.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-submitting-forms/src/main/webapp/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-submitting-forms/src/main/webapp/css/main.css -------------------------------------------------------------------------------- /spring-boot-tutorial-submitting-forms/src/main/webapp/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-submitting-forms/src/main/webapp/js/bootstrap.min.js -------------------------------------------------------------------------------- /spring-boot-tutorial-thymeleaf/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /spring-boot-tutorial-thymeleaf/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-thymeleaf/pom.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-thymeleaf/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-thymeleaf/src/main/resources/application.properties -------------------------------------------------------------------------------- /spring-boot-tutorial-thymeleaf/src/main/resources/mail/verifyemail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-thymeleaf/src/main/resources/mail/verifyemail.html -------------------------------------------------------------------------------- /spring-boot-tutorial-thymeleaf/src/main/webapp/WEB-INF/layouts/default.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-thymeleaf/src/main/webapp/WEB-INF/layouts/default.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-thymeleaf/src/main/webapp/WEB-INF/tags/pagination.tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-thymeleaf/src/main/webapp/WEB-INF/tags/pagination.tag -------------------------------------------------------------------------------- /spring-boot-tutorial-thymeleaf/src/main/webapp/WEB-INF/tiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-thymeleaf/src/main/webapp/WEB-INF/tiles.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-thymeleaf/src/main/webapp/WEB-INF/tiles/about.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-thymeleaf/src/main/webapp/WEB-INF/tiles/about.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-thymeleaf/src/main/webapp/WEB-INF/tiles/addstatus.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-thymeleaf/src/main/webapp/WEB-INF/tiles/addstatus.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-thymeleaf/src/main/webapp/WEB-INF/tiles/home.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-thymeleaf/src/main/webapp/WEB-INF/tiles/home.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-thymeleaf/src/main/webapp/WEB-INF/tiles/login.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-thymeleaf/src/main/webapp/WEB-INF/tiles/login.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-thymeleaf/src/main/webapp/WEB-INF/tiles/register.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-thymeleaf/src/main/webapp/WEB-INF/tiles/register.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-thymeleaf/src/main/webapp/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-thymeleaf/src/main/webapp/css/bootstrap.min.css -------------------------------------------------------------------------------- /spring-boot-tutorial-thymeleaf/src/main/webapp/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-thymeleaf/src/main/webapp/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /spring-boot-tutorial-thymeleaf/src/main/webapp/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-thymeleaf/src/main/webapp/css/main.css -------------------------------------------------------------------------------- /spring-boot-tutorial-thymeleaf/src/main/webapp/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-thymeleaf/src/main/webapp/js/bootstrap.min.js -------------------------------------------------------------------------------- /spring-boot-tutorial-tiles/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /spring-boot-tutorial-tiles/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-tiles/pom.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-tiles/src/main/java/com/caveofprogramming/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-tiles/src/main/java/com/caveofprogramming/App.java -------------------------------------------------------------------------------- /spring-boot-tutorial-tiles/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-tiles/src/main/resources/application.properties -------------------------------------------------------------------------------- /spring-boot-tutorial-tiles/src/main/webapp/WEB-INF/layouts/default.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-tiles/src/main/webapp/WEB-INF/layouts/default.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-tiles/src/main/webapp/WEB-INF/tiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-tiles/src/main/webapp/WEB-INF/tiles.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-tiles/src/main/webapp/WEB-INF/tiles/about.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-tiles/src/main/webapp/WEB-INF/tiles/about.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-tiles/src/main/webapp/WEB-INF/tiles/home.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-tiles/src/main/webapp/WEB-INF/tiles/home.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-token-verification copy/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /spring-boot-tutorial-token-verification copy/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-token-verification copy/pom.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-token-verification copy/src/main/webapp/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-token-verification copy/src/main/webapp/css/main.css -------------------------------------------------------------------------------- /spring-boot-tutorial-token-verification/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /spring-boot-tutorial-token-verification/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-token-verification/pom.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-token-verification/src/main/webapp/WEB-INF/tiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-token-verification/src/main/webapp/WEB-INF/tiles.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-token-verification/src/main/webapp/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-token-verification/src/main/webapp/css/main.css -------------------------------------------------------------------------------- /spring-boot-tutorial-upgrade/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-upgrade/.classpath -------------------------------------------------------------------------------- /spring-boot-tutorial-upgrade/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /spring-boot-tutorial-upgrade/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-upgrade/.project -------------------------------------------------------------------------------- /spring-boot-tutorial-upgrade/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-upgrade/.settings/org.eclipse.core.resources.prefs -------------------------------------------------------------------------------- /spring-boot-tutorial-upgrade/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-upgrade/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /spring-boot-tutorial-upgrade/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-upgrade/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /spring-boot-tutorial-upgrade/.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-upgrade/.settings/org.eclipse.wst.common.component -------------------------------------------------------------------------------- /spring-boot-tutorial-upgrade/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /spring-boot-tutorial-upgrade/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-upgrade/pom.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-upgrade/src/main/java/com/caveofprogramming/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-upgrade/src/main/java/com/caveofprogramming/App.java -------------------------------------------------------------------------------- /spring-boot-tutorial-upgrade/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-upgrade/src/main/resources/application.properties -------------------------------------------------------------------------------- /spring-boot-tutorial-upgrade/src/main/resources/mail/verifyemail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-upgrade/src/main/resources/mail/verifyemail.html -------------------------------------------------------------------------------- /spring-boot-tutorial-upgrade/src/main/resources/test.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-upgrade/src/main/resources/test.properties -------------------------------------------------------------------------------- /spring-boot-tutorial-upgrade/src/main/webapp/WEB-INF/layouts/default.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-upgrade/src/main/webapp/WEB-INF/layouts/default.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-upgrade/src/main/webapp/WEB-INF/tags/pagination.tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-upgrade/src/main/webapp/WEB-INF/tags/pagination.tag -------------------------------------------------------------------------------- /spring-boot-tutorial-upgrade/src/main/webapp/WEB-INF/tiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-upgrade/src/main/webapp/WEB-INF/tiles.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-upgrade/src/main/webapp/WEB-INF/tiles/about.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-upgrade/src/main/webapp/WEB-INF/tiles/about.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-upgrade/src/main/webapp/WEB-INF/tiles/addstatus.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-upgrade/src/main/webapp/WEB-INF/tiles/addstatus.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-upgrade/src/main/webapp/WEB-INF/tiles/editstatus.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-upgrade/src/main/webapp/WEB-INF/tiles/editstatus.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-upgrade/src/main/webapp/WEB-INF/tiles/exception.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-upgrade/src/main/webapp/WEB-INF/tiles/exception.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-upgrade/src/main/webapp/WEB-INF/tiles/home.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-upgrade/src/main/webapp/WEB-INF/tiles/home.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-upgrade/src/main/webapp/WEB-INF/tiles/login.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-upgrade/src/main/webapp/WEB-INF/tiles/login.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-upgrade/src/main/webapp/WEB-INF/tiles/message.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-upgrade/src/main/webapp/WEB-INF/tiles/message.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-upgrade/src/main/webapp/WEB-INF/tiles/profile.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-upgrade/src/main/webapp/WEB-INF/tiles/profile.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-upgrade/src/main/webapp/WEB-INF/tiles/register.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-upgrade/src/main/webapp/WEB-INF/tiles/register.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-upgrade/src/main/webapp/WEB-INF/tiles/results.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-upgrade/src/main/webapp/WEB-INF/tiles/results.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-upgrade/src/main/webapp/WEB-INF/tiles/verifyemail.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-upgrade/src/main/webapp/WEB-INF/tiles/verifyemail.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-upgrade/src/main/webapp/WEB-INF/tiles/viewstatus.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-upgrade/src/main/webapp/WEB-INF/tiles/viewstatus.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-upgrade/src/main/webapp/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-upgrade/src/main/webapp/css/bootstrap.min.css -------------------------------------------------------------------------------- /spring-boot-tutorial-upgrade/src/main/webapp/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-upgrade/src/main/webapp/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /spring-boot-tutorial-upgrade/src/main/webapp/css/jquery.tagit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-upgrade/src/main/webapp/css/jquery.tagit.css -------------------------------------------------------------------------------- /spring-boot-tutorial-upgrade/src/main/webapp/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-upgrade/src/main/webapp/css/main.css -------------------------------------------------------------------------------- /spring-boot-tutorial-upgrade/src/main/webapp/img/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-upgrade/src/main/webapp/img/avatar.jpg -------------------------------------------------------------------------------- /spring-boot-tutorial-upgrade/src/main/webapp/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-upgrade/src/main/webapp/js/bootstrap.min.js -------------------------------------------------------------------------------- /spring-boot-tutorial-upgrade/src/main/webapp/js/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-upgrade/src/main/webapp/js/jquery-ui.min.js -------------------------------------------------------------------------------- /spring-boot-tutorial-upgrade/src/main/webapp/js/tag-it.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-upgrade/src/main/webapp/js/tag-it.min.js -------------------------------------------------------------------------------- /spring-boot-tutorial-upload-photos/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /spring-boot-tutorial-upload-photos/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-upload-photos/pom.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-upload-photos/src/main/java/com/caveofprogramming/model/TokenType.java: -------------------------------------------------------------------------------- 1 | package com.caveofprogramming.model; 2 | 3 | public enum TokenType { 4 | REGISTRATION, 5 | PASSWORD_RESET 6 | } 7 | -------------------------------------------------------------------------------- /spring-boot-tutorial-upload-photos/src/main/webapp/WEB-INF/tiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-upload-photos/src/main/webapp/WEB-INF/tiles.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-upload-photos/src/main/webapp/WEB-INF/tiles/about.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-upload-photos/src/main/webapp/WEB-INF/tiles/about.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-upload-photos/src/main/webapp/WEB-INF/tiles/home.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-upload-photos/src/main/webapp/WEB-INF/tiles/home.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-upload-photos/src/main/webapp/WEB-INF/tiles/login.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-upload-photos/src/main/webapp/WEB-INF/tiles/login.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-upload-photos/src/main/webapp/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-upload-photos/src/main/webapp/css/bootstrap.min.css -------------------------------------------------------------------------------- /spring-boot-tutorial-upload-photos/src/main/webapp/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-upload-photos/src/main/webapp/css/main.css -------------------------------------------------------------------------------- /spring-boot-tutorial-upload-photos/src/main/webapp/img/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-upload-photos/src/main/webapp/img/avatar.jpg -------------------------------------------------------------------------------- /spring-boot-tutorial-upload-photos/src/main/webapp/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-upload-photos/src/main/webapp/js/bootstrap.min.js -------------------------------------------------------------------------------- /spring-boot-tutorial-view-profiles/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /spring-boot-tutorial-view-profiles/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-view-profiles/pom.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-view-profiles/src/main/java/com/caveofprogramming/model/TokenType.java: -------------------------------------------------------------------------------- 1 | package com.caveofprogramming.model; 2 | 3 | public enum TokenType { 4 | REGISTRATION, 5 | PASSWORD_RESET 6 | } 7 | -------------------------------------------------------------------------------- /spring-boot-tutorial-view-profiles/src/main/webapp/WEB-INF/tiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-view-profiles/src/main/webapp/WEB-INF/tiles.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-view-profiles/src/main/webapp/WEB-INF/tiles/about.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-view-profiles/src/main/webapp/WEB-INF/tiles/about.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-view-profiles/src/main/webapp/WEB-INF/tiles/home.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-view-profiles/src/main/webapp/WEB-INF/tiles/home.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-view-profiles/src/main/webapp/WEB-INF/tiles/login.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-view-profiles/src/main/webapp/WEB-INF/tiles/login.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial-view-profiles/src/main/webapp/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-view-profiles/src/main/webapp/css/bootstrap.min.css -------------------------------------------------------------------------------- /spring-boot-tutorial-view-profiles/src/main/webapp/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-view-profiles/src/main/webapp/css/main.css -------------------------------------------------------------------------------- /spring-boot-tutorial-view-profiles/src/main/webapp/img/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-view-profiles/src/main/webapp/img/avatar.jpg -------------------------------------------------------------------------------- /spring-boot-tutorial-view-profiles/src/main/webapp/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-view-profiles/src/main/webapp/js/bootstrap.min.js -------------------------------------------------------------------------------- /spring-boot-tutorial-war/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /spring-boot-tutorial-war/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-war/pom.xml -------------------------------------------------------------------------------- /spring-boot-tutorial-war/src/main/java/com/caveofprogramming/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-war/src/main/java/com/caveofprogramming/App.java -------------------------------------------------------------------------------- /spring-boot-tutorial-war/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-war/src/main/resources/application.properties -------------------------------------------------------------------------------- /spring-boot-tutorial-war/src/main/webapp/WEB-INF/jsps/home.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial-war/src/main/webapp/WEB-INF/jsps/home.jsp -------------------------------------------------------------------------------- /spring-boot-tutorial/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /spring-boot-tutorial/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial/pom.xml -------------------------------------------------------------------------------- /spring-boot-tutorial/src/main/java/com/caveofprogramming/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-tutorial/src/main/java/com/caveofprogramming/App.java -------------------------------------------------------------------------------- /spring-boot-validating-password/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /spring-boot-validating-password/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-validating-password/pom.xml -------------------------------------------------------------------------------- /spring-boot-validating-password/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-validating-password/src/main/resources/application.properties -------------------------------------------------------------------------------- /spring-boot-validating-password/src/main/webapp/WEB-INF/tiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-validating-password/src/main/webapp/WEB-INF/tiles.xml -------------------------------------------------------------------------------- /spring-boot-validating-password/src/main/webapp/WEB-INF/tiles/about.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-validating-password/src/main/webapp/WEB-INF/tiles/about.jsp -------------------------------------------------------------------------------- /spring-boot-validating-password/src/main/webapp/WEB-INF/tiles/home.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-validating-password/src/main/webapp/WEB-INF/tiles/home.jsp -------------------------------------------------------------------------------- /spring-boot-validating-password/src/main/webapp/WEB-INF/tiles/login.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-validating-password/src/main/webapp/WEB-INF/tiles/login.jsp -------------------------------------------------------------------------------- /spring-boot-validating-password/src/main/webapp/WEB-INF/tiles/register.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-validating-password/src/main/webapp/WEB-INF/tiles/register.jsp -------------------------------------------------------------------------------- /spring-boot-validating-password/src/main/webapp/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-validating-password/src/main/webapp/css/bootstrap.min.css -------------------------------------------------------------------------------- /spring-boot-validating-password/src/main/webapp/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-validating-password/src/main/webapp/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /spring-boot-validating-password/src/main/webapp/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-validating-password/src/main/webapp/css/main.css -------------------------------------------------------------------------------- /spring-boot-validating-password/src/main/webapp/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-validating-password/src/main/webapp/js/bootstrap.min.js -------------------------------------------------------------------------------- /spring-boot-webjars/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-webjars/.classpath -------------------------------------------------------------------------------- /spring-boot-webjars/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /spring-boot-webjars/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-webjars/.project -------------------------------------------------------------------------------- /spring-boot-webjars/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-webjars/.settings/org.eclipse.core.resources.prefs -------------------------------------------------------------------------------- /spring-boot-webjars/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-webjars/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /spring-boot-webjars/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-webjars/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /spring-boot-webjars/.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-webjars/.settings/org.eclipse.wst.common.component -------------------------------------------------------------------------------- /spring-boot-webjars/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /spring-boot-webjars/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-webjars/pom.xml -------------------------------------------------------------------------------- /spring-boot-webjars/src/main/java/com/caveofprogramming/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-webjars/src/main/java/com/caveofprogramming/App.java -------------------------------------------------------------------------------- /spring-boot-webjars/src/main/java/com/caveofprogramming/model/entity/TokenType.java: -------------------------------------------------------------------------------- 1 | package com.caveofprogramming.model.entity; 2 | 3 | public enum TokenType { 4 | REGISTRATION, 5 | PASSWORD_RESET 6 | } 7 | -------------------------------------------------------------------------------- /spring-boot-webjars/src/main/resources/ValidationMessages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-webjars/src/main/resources/ValidationMessages.properties -------------------------------------------------------------------------------- /spring-boot-webjars/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-webjars/src/main/resources/application.properties -------------------------------------------------------------------------------- /spring-boot-webjars/src/main/resources/mail/verifyemail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-webjars/src/main/resources/mail/verifyemail.html -------------------------------------------------------------------------------- /spring-boot-webjars/src/main/resources/test.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-webjars/src/main/resources/test.properties -------------------------------------------------------------------------------- /spring-boot-webjars/src/main/webapp/WEB-INF/layouts/default.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-webjars/src/main/webapp/WEB-INF/layouts/default.jsp -------------------------------------------------------------------------------- /spring-boot-webjars/src/main/webapp/WEB-INF/tags/pagination.tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-webjars/src/main/webapp/WEB-INF/tags/pagination.tag -------------------------------------------------------------------------------- /spring-boot-webjars/src/main/webapp/WEB-INF/tiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-webjars/src/main/webapp/WEB-INF/tiles.xml -------------------------------------------------------------------------------- /spring-boot-webjars/src/main/webapp/WEB-INF/tiles/about.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-webjars/src/main/webapp/WEB-INF/tiles/about.jsp -------------------------------------------------------------------------------- /spring-boot-webjars/src/main/webapp/WEB-INF/tiles/addstatus.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-webjars/src/main/webapp/WEB-INF/tiles/addstatus.jsp -------------------------------------------------------------------------------- /spring-boot-webjars/src/main/webapp/WEB-INF/tiles/editprofileabout.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-webjars/src/main/webapp/WEB-INF/tiles/editprofileabout.jsp -------------------------------------------------------------------------------- /spring-boot-webjars/src/main/webapp/WEB-INF/tiles/editstatus.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-webjars/src/main/webapp/WEB-INF/tiles/editstatus.jsp -------------------------------------------------------------------------------- /spring-boot-webjars/src/main/webapp/WEB-INF/tiles/exception.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-webjars/src/main/webapp/WEB-INF/tiles/exception.jsp -------------------------------------------------------------------------------- /spring-boot-webjars/src/main/webapp/WEB-INF/tiles/home.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-webjars/src/main/webapp/WEB-INF/tiles/home.jsp -------------------------------------------------------------------------------- /spring-boot-webjars/src/main/webapp/WEB-INF/tiles/login.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-webjars/src/main/webapp/WEB-INF/tiles/login.jsp -------------------------------------------------------------------------------- /spring-boot-webjars/src/main/webapp/WEB-INF/tiles/message.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-webjars/src/main/webapp/WEB-INF/tiles/message.jsp -------------------------------------------------------------------------------- /spring-boot-webjars/src/main/webapp/WEB-INF/tiles/profile.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-webjars/src/main/webapp/WEB-INF/tiles/profile.jsp -------------------------------------------------------------------------------- /spring-boot-webjars/src/main/webapp/WEB-INF/tiles/register.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-webjars/src/main/webapp/WEB-INF/tiles/register.jsp -------------------------------------------------------------------------------- /spring-boot-webjars/src/main/webapp/WEB-INF/tiles/results.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-webjars/src/main/webapp/WEB-INF/tiles/results.jsp -------------------------------------------------------------------------------- /spring-boot-webjars/src/main/webapp/WEB-INF/tiles/verifyemail.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-webjars/src/main/webapp/WEB-INF/tiles/verifyemail.jsp -------------------------------------------------------------------------------- /spring-boot-webjars/src/main/webapp/WEB-INF/tiles/viewstatus.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-webjars/src/main/webapp/WEB-INF/tiles/viewstatus.jsp -------------------------------------------------------------------------------- /spring-boot-webjars/src/main/webapp/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-webjars/src/main/webapp/css/bootstrap.min.css -------------------------------------------------------------------------------- /spring-boot-webjars/src/main/webapp/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-webjars/src/main/webapp/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /spring-boot-webjars/src/main/webapp/css/jquery.tagit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-webjars/src/main/webapp/css/jquery.tagit.css -------------------------------------------------------------------------------- /spring-boot-webjars/src/main/webapp/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-webjars/src/main/webapp/css/main.css -------------------------------------------------------------------------------- /spring-boot-webjars/src/main/webapp/img/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-webjars/src/main/webapp/img/avatar.jpg -------------------------------------------------------------------------------- /spring-boot-webjars/src/main/webapp/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-webjars/src/main/webapp/js/bootstrap.min.js -------------------------------------------------------------------------------- /spring-boot-webjars/src/main/webapp/js/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-webjars/src/main/webapp/js/jquery-ui.min.js -------------------------------------------------------------------------------- /spring-boot-webjars/src/main/webapp/js/tag-it.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-webjars/src/main/webapp/js/tag-it.min.js -------------------------------------------------------------------------------- /spring-boot-websockets/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-websockets/.classpath -------------------------------------------------------------------------------- /spring-boot-websockets/.gitignore: -------------------------------------------------------------------------------- 1 | /target/ 2 | -------------------------------------------------------------------------------- /spring-boot-websockets/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-websockets/.project -------------------------------------------------------------------------------- /spring-boot-websockets/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-websockets/.settings/org.eclipse.core.resources.prefs -------------------------------------------------------------------------------- /spring-boot-websockets/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-websockets/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /spring-boot-websockets/.settings/org.eclipse.m2e.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-websockets/.settings/org.eclipse.m2e.core.prefs -------------------------------------------------------------------------------- /spring-boot-websockets/.settings/org.eclipse.wst.common.component: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-websockets/.settings/org.eclipse.wst.common.component -------------------------------------------------------------------------------- /spring-boot-websockets/.settings/org.eclipse.wst.validation.prefs: -------------------------------------------------------------------------------- 1 | disabled=06target 2 | eclipse.preferences.version=1 3 | -------------------------------------------------------------------------------- /spring-boot-websockets/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-websockets/pom.xml -------------------------------------------------------------------------------- /spring-boot-websockets/src/main/java/com/caveofprogramming/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-websockets/src/main/java/com/caveofprogramming/App.java -------------------------------------------------------------------------------- /spring-boot-websockets/src/main/java/com/caveofprogramming/model/entity/TokenType.java: -------------------------------------------------------------------------------- 1 | package com.caveofprogramming.model.entity; 2 | 3 | public enum TokenType { 4 | REGISTRATION, 5 | PASSWORD_RESET 6 | } 7 | -------------------------------------------------------------------------------- /spring-boot-websockets/src/main/resources/ValidationMessages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-websockets/src/main/resources/ValidationMessages.properties -------------------------------------------------------------------------------- /spring-boot-websockets/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-websockets/src/main/resources/application.properties -------------------------------------------------------------------------------- /spring-boot-websockets/src/main/resources/mail/verifyemail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-websockets/src/main/resources/mail/verifyemail.html -------------------------------------------------------------------------------- /spring-boot-websockets/src/main/resources/test.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-websockets/src/main/resources/test.properties -------------------------------------------------------------------------------- /spring-boot-websockets/src/main/webapp/WEB-INF/layouts/default.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-websockets/src/main/webapp/WEB-INF/layouts/default.jsp -------------------------------------------------------------------------------- /spring-boot-websockets/src/main/webapp/WEB-INF/tags/pagination.tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-websockets/src/main/webapp/WEB-INF/tags/pagination.tag -------------------------------------------------------------------------------- /spring-boot-websockets/src/main/webapp/WEB-INF/tiles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-websockets/src/main/webapp/WEB-INF/tiles.xml -------------------------------------------------------------------------------- /spring-boot-websockets/src/main/webapp/WEB-INF/tiles/about.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-websockets/src/main/webapp/WEB-INF/tiles/about.jsp -------------------------------------------------------------------------------- /spring-boot-websockets/src/main/webapp/WEB-INF/tiles/addstatus.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-websockets/src/main/webapp/WEB-INF/tiles/addstatus.jsp -------------------------------------------------------------------------------- /spring-boot-websockets/src/main/webapp/WEB-INF/tiles/chatnotifications.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-websockets/src/main/webapp/WEB-INF/tiles/chatnotifications.jsp -------------------------------------------------------------------------------- /spring-boot-websockets/src/main/webapp/WEB-INF/tiles/chatview.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-websockets/src/main/webapp/WEB-INF/tiles/chatview.jsp -------------------------------------------------------------------------------- /spring-boot-websockets/src/main/webapp/WEB-INF/tiles/chatviewscript.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-websockets/src/main/webapp/WEB-INF/tiles/chatviewscript.jsp -------------------------------------------------------------------------------- /spring-boot-websockets/src/main/webapp/WEB-INF/tiles/editprofileabout.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-websockets/src/main/webapp/WEB-INF/tiles/editprofileabout.jsp -------------------------------------------------------------------------------- /spring-boot-websockets/src/main/webapp/WEB-INF/tiles/editstatus.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-websockets/src/main/webapp/WEB-INF/tiles/editstatus.jsp -------------------------------------------------------------------------------- /spring-boot-websockets/src/main/webapp/WEB-INF/tiles/exception.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-websockets/src/main/webapp/WEB-INF/tiles/exception.jsp -------------------------------------------------------------------------------- /spring-boot-websockets/src/main/webapp/WEB-INF/tiles/home.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-websockets/src/main/webapp/WEB-INF/tiles/home.jsp -------------------------------------------------------------------------------- /spring-boot-websockets/src/main/webapp/WEB-INF/tiles/login.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-websockets/src/main/webapp/WEB-INF/tiles/login.jsp -------------------------------------------------------------------------------- /spring-boot-websockets/src/main/webapp/WEB-INF/tiles/message.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-websockets/src/main/webapp/WEB-INF/tiles/message.jsp -------------------------------------------------------------------------------- /spring-boot-websockets/src/main/webapp/WEB-INF/tiles/profile.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-websockets/src/main/webapp/WEB-INF/tiles/profile.jsp -------------------------------------------------------------------------------- /spring-boot-websockets/src/main/webapp/WEB-INF/tiles/register.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-websockets/src/main/webapp/WEB-INF/tiles/register.jsp -------------------------------------------------------------------------------- /spring-boot-websockets/src/main/webapp/WEB-INF/tiles/results.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-websockets/src/main/webapp/WEB-INF/tiles/results.jsp -------------------------------------------------------------------------------- /spring-boot-websockets/src/main/webapp/WEB-INF/tiles/verifyemail.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-websockets/src/main/webapp/WEB-INF/tiles/verifyemail.jsp -------------------------------------------------------------------------------- /spring-boot-websockets/src/main/webapp/WEB-INF/tiles/viewstatus.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-websockets/src/main/webapp/WEB-INF/tiles/viewstatus.jsp -------------------------------------------------------------------------------- /spring-boot-websockets/src/main/webapp/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-websockets/src/main/webapp/css/bootstrap.min.css -------------------------------------------------------------------------------- /spring-boot-websockets/src/main/webapp/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-websockets/src/main/webapp/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /spring-boot-websockets/src/main/webapp/css/jquery.tagit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-websockets/src/main/webapp/css/jquery.tagit.css -------------------------------------------------------------------------------- /spring-boot-websockets/src/main/webapp/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-websockets/src/main/webapp/css/main.css -------------------------------------------------------------------------------- /spring-boot-websockets/src/main/webapp/img/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-websockets/src/main/webapp/img/avatar.jpg -------------------------------------------------------------------------------- /spring-boot-websockets/src/main/webapp/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-websockets/src/main/webapp/js/bootstrap.min.js -------------------------------------------------------------------------------- /spring-boot-websockets/src/main/webapp/js/connectionmanager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-websockets/src/main/webapp/js/connectionmanager.js -------------------------------------------------------------------------------- /spring-boot-websockets/src/main/webapp/js/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-websockets/src/main/webapp/js/jquery-ui.min.js -------------------------------------------------------------------------------- /spring-boot-websockets/src/main/webapp/js/tag-it.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/spring-boot-websockets/src/main/webapp/js/tag-it.min.js -------------------------------------------------------------------------------- /upgrading-springboot-1-to-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caveofprogramming/springboot/HEAD/upgrading-springboot-1-to-2.pdf --------------------------------------------------------------------------------