springBoot中application.properties的常用配置
阿新 • • 發佈:2018-11-17
記錄是為了更好的成長!
1、資料庫連線配置
#描述資料來源
spring.datasource.url=jdbc:mysql://localhost:3306/demo
spring.datasource.username=root
spring.datasource.password=0000
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
2、thymeleaf元件配置
#spring.thymeleaf.cache=false #spring.thymeleaf.prefix=classpath:/templates/ #spring.thymeleaf.check-template-location=true #spring.thymeleaf.suffix=.html #spring.thymeleaf.encoding=UTF-8 #spring.thymeleaf.content-type=text/html #spring.thymeleaf.mode=HTML5
3、定義banner輸出資訊
#可以自定義輸出資訊的位置
#banner.location=xxx.txt
#指定編碼格式
#banner.charset=utf-8
#banner圖開啟或者列印模式
#spring.main.banner-mode=console/off
4、配置埠和專案名訪問
#指定springboot內嵌容器啟動的埠,預設使用tomcat容器時在8080埠
#server.port=8081
#配置專案訪問路徑
#server.servlet.context-path=/boot
5、資料持久化配置
#是否列印sql語句 #spring.jpa.show-sql= true #mybatis配置檔案路徑 #mybatis.config-location=classpath:MyBatis.xml #mybatis.mapper-locaitons=classpath:mybatis/mappings/*.xml #別名實體包,多個逗號隔開 #mybatis.type-aliases-package=com.user.bean
以上內容代表個人觀點,僅供參考,不喜勿噴。。。