ASE-New/src/main/resources/application.properties

23 lines
703 B
Properties
Raw Normal View History

2020-01-29 09:25:43 +00:00
server.port=8080
spring.thymeleaf.prefix=classpath:templates/
spring.thymeleaf.suffix=.html
spring.thymeleaf.mode=HTML
spring.thymeleaf.encoding=UTF-8
2020-01-29 14:51:39 +00:00
spring.jpa.generate-ddl=false
spring.jpa.show-sql=true
2020-02-14 10:10:02 +00:00
spring.jpa.hibernate.ddl-auto=update
spring.jooq.sql-dialect=org.hibernate.dialect.MySQL5InnoDBDialect
2020-02-14 07:59:40 +00:00
spring.jpa.open-in-view=true
spring.jpa.properties.hibernate.enable_lazy_load_no_trans=true
2020-01-29 14:51:39 +00:00
2020-02-11 13:40:50 +00:00
spring.datasource.url=jdbc:mysql://${MYSQL_HOST:119.23.9.34}:3306/ase?useUnicode=true&characterEncoding=UTF-8&serverTimezone=UTC
spring.datasource.username=codedream
spring.datasource.password=codedreampasswd
2020-02-14 10:10:02 +00:00
server.error.whitelabel.enabled=false
2020-03-01 07:13:16 +00:00
logging.level.org.springframework.security=DEBUG