Mise en place d'un système de gestion immobilière
- Système de gestion des contrats
- L'option `imprimer en PDF`
- Envoie d'un `mailing au client` par rapport au règlement de location ou autre
- Système de gestion factution - avec l'option `imprimer en PDF`
- Système de gestion `rapport au format Excel`
https://start.spring.io/
Les starters dont nous aurons besoin
- lombok
- spring web
- spring data jpa
- spring mysql driver
- spring security
- spring boot DevTools
spring.datasource.url = jdbc:mysql://localhost:3306/immobilierdb?createDatabaseIfNotExist=true
spring.datasource.username = root
spring.datasource.password =
spring.datasource.driverClassName = com.mysql.jdbc.Driver
spring.jpa.show-sql = true
spring.jpa.hibernate.ddl-auto = update
spring.jpa.properties.hibernate.dialect = org.hibernate.dialect.MySQL5InnoDBDialect
spring.thymeleaf.cache=false
#Server Error 404
server.error.whitelabel.enabled=false
#Tomcat configuration
server.port=9000