https://github.com/albertprofe/cifojava2021-javase-3
Java SE exercises: Objects, POO, to practise with objects and classes, that is: uses, composition, inherence creating UML with INTERFACES
https://github.com/albertprofe/cifojava2021-javase-3
Last synced: 2 months ago
JSON representation
Java SE exercises: Objects, POO, to practise with objects and classes, that is: uses, composition, inherence creating UML with INTERFACES
- Host: GitHub
- URL: https://github.com/albertprofe/cifojava2021-javase-3
- Owner: AlbertProfe
- Created: 2021-05-28T11:06:34.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2021-07-05T11:31:13.000Z (almost 4 years ago)
- Last Synced: 2025-01-20T15:19:01.518Z (4 months ago)
- Language: Java
- Homepage:
- Size: 303 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# cifojava2021-javase-3
Java SE exercises: Objects, POO, to practise with objects and classes, that is: uses, composition, inherence creating UML with INTERFACES
Spring Boot CRUD JPA @Entity employee exercise:
- Spring Boot with @Controller, View and Thymeleaf and Applications.properties
- Classes: JPA @Entity Employee and CrudRepository Interface
- Database: H2 (local or in Memory) and ddl.auto## employee (java-EE spring)
- employee1: CRUD, option Read
- `public String getAllEmployees(Model boxToView)`
- employeeRepository.findAll(), CrudRepository and employees.html
- employee2: CRUD, option Delete
- `public String removeEmployee(int id, Model model)`
- employeeRepository.deleteById(id), CrudRepository and employees.html
- employee3: CRUD, option Create
- `public String newEmpoyee()`
- `public String inserEmployee(Employee employee)`
- "newemployee.html" and @Entity expense
- employee4: CRUD option Update
- `public String updateEmpoyee(int id, Model model)`
- `public String replaceEmployee(@PathVariable("idFromView") int id, Employee employee)`
- `public String detailEmpoyee(int id, Model model)`
- layout and navbar
- fillinEmployee `public String fillInDBEmployee(int qtyToCreate)` in HomeController with Java faker
- employee5: CRUD of @Expense
- employee6: Login
- classes: MvcConfig and WebSecurityConfig## userUniversity (java-SE)
Java SE exercises: Objects, POO, to practise with objects and classes, that is: uses, composition, inherence creating UML with INTERFACES- userUniversity
- userUniversity0.1
- userUniversity0.2
- userUniversity0.3