springboot常用配置

dutf發表於2019-03-04
# 設定埠號
server.port=8082
# 設定專案名
server.context-path=/cmfz

# datasource設定資料庫連線
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
spring.datasource.url=jdbc:mysql://localhost:3306/cmfz
spring.datasource.username=root
spring.datasource.password=123456
spring.datasource.type=com.alibaba.druid.pool.DruidDataSource

# 掃描mapper-plus檔案
mybatis-plus.mapper-locations=classpath*:com/baizhi/dao/*Mapper.xml
mybatis-plus.type-aliases-package=com.baizhi.entity

# 開啟jsp頁面熱部署
server.jsp-servlet.init-parameters.development=true

# 設定使用jsp頁面
spring.mvc.view.prefix=/
spring.mvc.view.suffix=.jsp

# 設定編碼格式
spring.http.encoding.charset=utf-8
spring.http.encoding.force=true

# 檔案上傳及下載相關配置
spring.http.multipart.max-file-size=20MB
spring.http.multipart.max-request-size=100MB


#FreeMarker配置
spring.freemarker.prefix=/
spring.freemarker.suffix=.ftl

相關文章