# \u914d\u7f6e\u6570\u636e\u5e93
|
spring.datasource.url = jdbc:mysql://127.0.0.1:3306/logistics?characterEncoding=utf8&useSSL=false
|
spring.datasource.username = root
|
spring.datasource.password = root
|
spring.datasource.driver-class-name = com.mysql.jdbc.Driver
|
spring.datasource.type = com.alibaba.druid.pool.DruidDataSource
|
|
# Specify the DBMS
|
spring.jpa.database = MYSQL
|
# Show or not log for each sql query
|
spring.jpa.show-sql = true
|
# Hibernate ddl auto (create, create-drop, update)
|
spring.jpa.hibernate.ddl-auto = update
|
# Naming strategy
|
spring.jpa.hibernate.naming.physical-strategy = org.springframework.boot.orm.jpa.hibernate.SpringPhysicalNamingStrategy
|
# stripped before adding them to the entity manager)
|
spring.jpa.properties.hibernate.dialect = org.hibernate.dialect.MySQL57InnoDBDialect
|
|
server.port = 9999
|