SpringBootPlus
#數(shù)據(jù)源
#數(shù)據(jù)庫(kù)用戶名
spring.datasource.username=root
#數(shù)據(jù)庫(kù)密碼
spring.datasource.password=root
#數(shù)據(jù)庫(kù)驅(qū)動(dòng)
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
#數(shù)據(jù)庫(kù)連接地址
spring.datasource.url=jdbc:mysql://localhost:3306/newsmanagersystem?useUnicode=true&characterEncoding=utf-8&serverTimezone=Asia/Shanghai
#數(shù)據(jù)庫(kù)類型
spring.datasource.platform=mysql
#日志輸出級(jí)別
logging.level.root=warn
#mybatis日志實(shí)現(xiàn) 控制臺(tái)
mybatis-plus.configuration.log-impl=org.apache.ibatis.logging.stdout.StdOutImpl
#mybatis-plus啟動(dòng)圖 關(guān)閉
mybatis-plus.global-config.banner=false
#mybatis-plus全局主鍵策略 自增
mybatis-plus.global-config.db-config.id-type=auto
#mybatis-plus全局 mapperxml文件路徑
mybatis-plus.mapper-locations=classpath:/mapper/*.xml
#服務(wù)器端口
server.port=80