Skip to content

exauce21/gestion-immo-spring-boot

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gestion-immo-spring-boot

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`

Création de projet avec Spring Initializr

https://start.spring.io/

Les starters dont nous aurons besoin

  • lombok
  • spring web
  • spring data jpa
  • spring mysql driver
  • spring security
  • spring boot DevTools

Capture d’écran 2022-04-11 à 17 52 11

Modification du fichier applications.properties

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

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages