├── .editorconfig ├── .gitignore ├── README.md ├── pom.xml └── src └── main └── java └── com └── auth0 └── samples └── bootfaces └── Application.java /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/spring-boot-faces/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | *.iml 3 | data/ 4 | /target/ 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## JavaServer Faces with Spring Boot -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/spring-boot-faces/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/com/auth0/samples/bootfaces/Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0-blog/spring-boot-faces/HEAD/src/main/java/com/auth0/samples/bootfaces/Application.java --------------------------------------------------------------------------------