├── .gitignore ├── hola-spring ├── README.md ├── pom.xml └── src │ └── main │ └── java │ └── org │ └── benek │ ├── AppConfig.java │ ├── HolaMundo.java │ └── SpringApp.java ├── restservice ├── .gitignore ├── .mvn │ └── wrapper │ │ └── maven-wrapper.properties ├── mvnw ├── mvnw.cmd ├── pom.xml └── src │ ├── main │ ├── java │ │ └── org │ │ │ └── benek │ │ │ └── bootcamp │ │ │ └── restservice │ │ │ ├── RestserviceApplication.java │ │ │ ├── controller │ │ │ └── EmpleadoController.java │ │ │ ├── init │ │ │ └── LoadDatabase.java │ │ │ ├── model │ │ │ └── Empleado.java │ │ │ └── repository │ │ │ └── EmpleadoRepository.java │ └── resources │ │ └── application.properties │ └── test │ └── java │ └── org │ └── benek │ └── bootcamp │ └── restservice │ ├── RestserviceApplicationTests.java │ └── controller │ └── EmpleadoControllerTests.java ├── springbootdemo ├── .gitignore ├── .mvn │ └── wrapper │ │ └── maven-wrapper.properties ├── mvnw ├── mvnw.cmd ├── pom.xml └── src │ ├── main │ ├── java │ │ └── org │ │ │ └── benek │ │ │ └── bootcamp │ │ │ └── springbootdemo │ │ │ ├── SpringbootdemoApplication.java │ │ │ ├── model │ │ │ └── Cliente.java │ │ │ └── repository │ │ │ └── ClienteRepository.java │ └── resources │ │ └── application.properties │ └── test │ └── java │ └── org │ └── benek │ └── bootcamp │ └── springbootdemo │ └── SpringbootdemoApplicationTests.java └── springmvcdemo ├── .gitignore ├── .mvn └── wrapper │ └── maven-wrapper.properties ├── mvnw ├── mvnw.cmd ├── pom.xml └── src ├── main ├── java │ └── org │ │ └── benek │ │ └── bootcamp │ │ └── springmvcdemo │ │ ├── SpringmvcdemoApplication.java │ │ └── controller │ │ └── LoginController.java └── resources │ ├── application.properties │ ├── static │ ├── index.html │ └── login.html │ └── templates │ ├── dashboard.html │ └── error.html └── test └── java └── org └── benek └── bootcamp └── springmvcdemo └── SpringmvcdemoApplicationTests.java /.gitignore: -------------------------------------------------------------------------------- 1 | **/.DS_Store 2 | target 3 | -------------------------------------------------------------------------------- /hola-spring/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benek/Bootcamp-Spring/HEAD/hola-spring/README.md -------------------------------------------------------------------------------- /hola-spring/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benek/Bootcamp-Spring/HEAD/hola-spring/pom.xml -------------------------------------------------------------------------------- /hola-spring/src/main/java/org/benek/AppConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benek/Bootcamp-Spring/HEAD/hola-spring/src/main/java/org/benek/AppConfig.java -------------------------------------------------------------------------------- /hola-spring/src/main/java/org/benek/HolaMundo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benek/Bootcamp-Spring/HEAD/hola-spring/src/main/java/org/benek/HolaMundo.java -------------------------------------------------------------------------------- /hola-spring/src/main/java/org/benek/SpringApp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benek/Bootcamp-Spring/HEAD/hola-spring/src/main/java/org/benek/SpringApp.java -------------------------------------------------------------------------------- /restservice/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benek/Bootcamp-Spring/HEAD/restservice/.gitignore -------------------------------------------------------------------------------- /restservice/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benek/Bootcamp-Spring/HEAD/restservice/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /restservice/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benek/Bootcamp-Spring/HEAD/restservice/mvnw -------------------------------------------------------------------------------- /restservice/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benek/Bootcamp-Spring/HEAD/restservice/mvnw.cmd -------------------------------------------------------------------------------- /restservice/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benek/Bootcamp-Spring/HEAD/restservice/pom.xml -------------------------------------------------------------------------------- /restservice/src/main/java/org/benek/bootcamp/restservice/RestserviceApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benek/Bootcamp-Spring/HEAD/restservice/src/main/java/org/benek/bootcamp/restservice/RestserviceApplication.java -------------------------------------------------------------------------------- /restservice/src/main/java/org/benek/bootcamp/restservice/controller/EmpleadoController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benek/Bootcamp-Spring/HEAD/restservice/src/main/java/org/benek/bootcamp/restservice/controller/EmpleadoController.java -------------------------------------------------------------------------------- /restservice/src/main/java/org/benek/bootcamp/restservice/init/LoadDatabase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benek/Bootcamp-Spring/HEAD/restservice/src/main/java/org/benek/bootcamp/restservice/init/LoadDatabase.java -------------------------------------------------------------------------------- /restservice/src/main/java/org/benek/bootcamp/restservice/model/Empleado.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benek/Bootcamp-Spring/HEAD/restservice/src/main/java/org/benek/bootcamp/restservice/model/Empleado.java -------------------------------------------------------------------------------- /restservice/src/main/java/org/benek/bootcamp/restservice/repository/EmpleadoRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benek/Bootcamp-Spring/HEAD/restservice/src/main/java/org/benek/bootcamp/restservice/repository/EmpleadoRepository.java -------------------------------------------------------------------------------- /restservice/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benek/Bootcamp-Spring/HEAD/restservice/src/main/resources/application.properties -------------------------------------------------------------------------------- /restservice/src/test/java/org/benek/bootcamp/restservice/RestserviceApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benek/Bootcamp-Spring/HEAD/restservice/src/test/java/org/benek/bootcamp/restservice/RestserviceApplicationTests.java -------------------------------------------------------------------------------- /restservice/src/test/java/org/benek/bootcamp/restservice/controller/EmpleadoControllerTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benek/Bootcamp-Spring/HEAD/restservice/src/test/java/org/benek/bootcamp/restservice/controller/EmpleadoControllerTests.java -------------------------------------------------------------------------------- /springbootdemo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benek/Bootcamp-Spring/HEAD/springbootdemo/.gitignore -------------------------------------------------------------------------------- /springbootdemo/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benek/Bootcamp-Spring/HEAD/springbootdemo/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /springbootdemo/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benek/Bootcamp-Spring/HEAD/springbootdemo/mvnw -------------------------------------------------------------------------------- /springbootdemo/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benek/Bootcamp-Spring/HEAD/springbootdemo/mvnw.cmd -------------------------------------------------------------------------------- /springbootdemo/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benek/Bootcamp-Spring/HEAD/springbootdemo/pom.xml -------------------------------------------------------------------------------- /springbootdemo/src/main/java/org/benek/bootcamp/springbootdemo/SpringbootdemoApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benek/Bootcamp-Spring/HEAD/springbootdemo/src/main/java/org/benek/bootcamp/springbootdemo/SpringbootdemoApplication.java -------------------------------------------------------------------------------- /springbootdemo/src/main/java/org/benek/bootcamp/springbootdemo/model/Cliente.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benek/Bootcamp-Spring/HEAD/springbootdemo/src/main/java/org/benek/bootcamp/springbootdemo/model/Cliente.java -------------------------------------------------------------------------------- /springbootdemo/src/main/java/org/benek/bootcamp/springbootdemo/repository/ClienteRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benek/Bootcamp-Spring/HEAD/springbootdemo/src/main/java/org/benek/bootcamp/springbootdemo/repository/ClienteRepository.java -------------------------------------------------------------------------------- /springbootdemo/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benek/Bootcamp-Spring/HEAD/springbootdemo/src/main/resources/application.properties -------------------------------------------------------------------------------- /springbootdemo/src/test/java/org/benek/bootcamp/springbootdemo/SpringbootdemoApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benek/Bootcamp-Spring/HEAD/springbootdemo/src/test/java/org/benek/bootcamp/springbootdemo/SpringbootdemoApplicationTests.java -------------------------------------------------------------------------------- /springmvcdemo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benek/Bootcamp-Spring/HEAD/springmvcdemo/.gitignore -------------------------------------------------------------------------------- /springmvcdemo/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benek/Bootcamp-Spring/HEAD/springmvcdemo/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /springmvcdemo/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benek/Bootcamp-Spring/HEAD/springmvcdemo/mvnw -------------------------------------------------------------------------------- /springmvcdemo/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benek/Bootcamp-Spring/HEAD/springmvcdemo/mvnw.cmd -------------------------------------------------------------------------------- /springmvcdemo/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benek/Bootcamp-Spring/HEAD/springmvcdemo/pom.xml -------------------------------------------------------------------------------- /springmvcdemo/src/main/java/org/benek/bootcamp/springmvcdemo/SpringmvcdemoApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benek/Bootcamp-Spring/HEAD/springmvcdemo/src/main/java/org/benek/bootcamp/springmvcdemo/SpringmvcdemoApplication.java -------------------------------------------------------------------------------- /springmvcdemo/src/main/java/org/benek/bootcamp/springmvcdemo/controller/LoginController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benek/Bootcamp-Spring/HEAD/springmvcdemo/src/main/java/org/benek/bootcamp/springmvcdemo/controller/LoginController.java -------------------------------------------------------------------------------- /springmvcdemo/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benek/Bootcamp-Spring/HEAD/springmvcdemo/src/main/resources/application.properties -------------------------------------------------------------------------------- /springmvcdemo/src/main/resources/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benek/Bootcamp-Spring/HEAD/springmvcdemo/src/main/resources/static/index.html -------------------------------------------------------------------------------- /springmvcdemo/src/main/resources/static/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benek/Bootcamp-Spring/HEAD/springmvcdemo/src/main/resources/static/login.html -------------------------------------------------------------------------------- /springmvcdemo/src/main/resources/templates/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benek/Bootcamp-Spring/HEAD/springmvcdemo/src/main/resources/templates/dashboard.html -------------------------------------------------------------------------------- /springmvcdemo/src/main/resources/templates/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benek/Bootcamp-Spring/HEAD/springmvcdemo/src/main/resources/templates/error.html -------------------------------------------------------------------------------- /springmvcdemo/src/test/java/org/benek/bootcamp/springmvcdemo/SpringmvcdemoApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benek/Bootcamp-Spring/HEAD/springmvcdemo/src/test/java/org/benek/bootcamp/springmvcdemo/SpringmvcdemoApplicationTests.java --------------------------------------------------------------------------------