├── .gitignore ├── CONTRIBUTING.markdown ├── LICENSE.txt ├── NOTICE.txt ├── README.markdown ├── pom.xml └── src ├── assembly └── sources.xml └── main ├── java └── thymeleafexamples │ └── springsecurity │ ├── SpringSecurityWebApplicationInitializer.java │ ├── SpringWebApplicationInitializer.java │ ├── security │ └── SpringSecurityConfig.java │ └── web │ ├── SpringWebConfig.java │ └── controller │ ├── ErrorController.java │ └── MainController.java ├── resources └── log4j.properties └── webapp ├── WEB-INF └── templates │ ├── 403.html │ ├── admin │ └── index.html │ ├── error.html │ ├── index.html │ ├── login.html │ ├── shared │ └── index.html │ └── user │ └── index.html └── css └── main.css /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thymeleaf/thymeleafexamples-springsecurity/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thymeleaf/thymeleafexamples-springsecurity/HEAD/CONTRIBUTING.markdown -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thymeleaf/thymeleafexamples-springsecurity/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thymeleaf/thymeleafexamples-springsecurity/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thymeleaf/thymeleafexamples-springsecurity/HEAD/README.markdown -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thymeleaf/thymeleafexamples-springsecurity/HEAD/pom.xml -------------------------------------------------------------------------------- /src/assembly/sources.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thymeleaf/thymeleafexamples-springsecurity/HEAD/src/assembly/sources.xml -------------------------------------------------------------------------------- /src/main/java/thymeleafexamples/springsecurity/SpringSecurityWebApplicationInitializer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thymeleaf/thymeleafexamples-springsecurity/HEAD/src/main/java/thymeleafexamples/springsecurity/SpringSecurityWebApplicationInitializer.java -------------------------------------------------------------------------------- /src/main/java/thymeleafexamples/springsecurity/SpringWebApplicationInitializer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thymeleaf/thymeleafexamples-springsecurity/HEAD/src/main/java/thymeleafexamples/springsecurity/SpringWebApplicationInitializer.java -------------------------------------------------------------------------------- /src/main/java/thymeleafexamples/springsecurity/security/SpringSecurityConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thymeleaf/thymeleafexamples-springsecurity/HEAD/src/main/java/thymeleafexamples/springsecurity/security/SpringSecurityConfig.java -------------------------------------------------------------------------------- /src/main/java/thymeleafexamples/springsecurity/web/SpringWebConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thymeleaf/thymeleafexamples-springsecurity/HEAD/src/main/java/thymeleafexamples/springsecurity/web/SpringWebConfig.java -------------------------------------------------------------------------------- /src/main/java/thymeleafexamples/springsecurity/web/controller/ErrorController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thymeleaf/thymeleafexamples-springsecurity/HEAD/src/main/java/thymeleafexamples/springsecurity/web/controller/ErrorController.java -------------------------------------------------------------------------------- /src/main/java/thymeleafexamples/springsecurity/web/controller/MainController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thymeleaf/thymeleafexamples-springsecurity/HEAD/src/main/java/thymeleafexamples/springsecurity/web/controller/MainController.java -------------------------------------------------------------------------------- /src/main/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thymeleaf/thymeleafexamples-springsecurity/HEAD/src/main/resources/log4j.properties -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/templates/403.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thymeleaf/thymeleafexamples-springsecurity/HEAD/src/main/webapp/WEB-INF/templates/403.html -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/templates/admin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thymeleaf/thymeleafexamples-springsecurity/HEAD/src/main/webapp/WEB-INF/templates/admin/index.html -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/templates/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thymeleaf/thymeleafexamples-springsecurity/HEAD/src/main/webapp/WEB-INF/templates/error.html -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thymeleaf/thymeleafexamples-springsecurity/HEAD/src/main/webapp/WEB-INF/templates/index.html -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thymeleaf/thymeleafexamples-springsecurity/HEAD/src/main/webapp/WEB-INF/templates/login.html -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/templates/shared/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thymeleaf/thymeleafexamples-springsecurity/HEAD/src/main/webapp/WEB-INF/templates/shared/index.html -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/templates/user/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thymeleaf/thymeleafexamples-springsecurity/HEAD/src/main/webapp/WEB-INF/templates/user/index.html -------------------------------------------------------------------------------- /src/main/webapp/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thymeleaf/thymeleafexamples-springsecurity/HEAD/src/main/webapp/css/main.css --------------------------------------------------------------------------------