Skip to main content
Sign in
Snippets Groups Projects
Select Git revision
  • 27410001cafe17406ecfe9fabdb6eb59d8301fd2
  • master default protected
2 results

application.properties

Blame
  • application.properties 688 B
    server.port=8085
    spring.thymeleaf.cache=false
    spring.thymeleaf.enabled=true 
    spring.thymeleaf.prefix=classpath:/templates/
    spring.thymeleaf.suffix=.html
    
    spring.application.name=Bootstrap Spring Boot
    
    
    ## Spring DATASOURCE (DataSourceAutoConfiguration & DataSourceProperties)
    spring.datasource.url = jdbc:mysql://localhost:3306/library
    
    spring.datasource.username =root
    spring.datasource.password =root
    ## Hibernate Properties
    # The SQL dialect makes Hibernate generate better SQL for the chosen database
    spring.jpa.properties.hibernate.dialect = org.hibernate.dialect.MySQL5InnoDBDialect
    # Hibernate ddl auto (create, create-drop, validate, update)
    spring.jpa.hibernate.ddl-auto = update