spring.profiles.active=$
tomcat配置
# 修改伺服器端口號
server.port=8081
# 修改上下文路徑
server.servlet.context-path=/example
# 配置 tomcat url 編碼
server.tomcat.uri-encoding=utf-
8
# 自定義 freemarker 模板位置,模板的模板位置在 classpath 下面的 templates 目錄中
spring.freemarker.template-loader-path=classpath:/freemarker
# 自定義模板的編碼格式,預設就是 utf-8
spring.freemarker.charset=utf-
8# 定義模板的 content-type
spring.freemarker.content-type=text/html
# 是否開啟 freemarker 快取
spring.freemarker.cache=false
# 配置模板字尾
spring.freemarker.suffix=.ftl
//宣告為配置類
@configuration
public
class
webmvcconfig
implements
webmvcconfigurer
}
//配置類宣告
@configuration
//匯入xml value/locations作用相同?
@importresource
(locations =
"classpath:beans.xml"
)@importresource
("classpath:beans.xml"
)
Springboot學習筆記(一)
web應用 spring web mvc 應用 spring web flux 應用 元件自動裝配 web mvc,web flax,jdbc 嵌入式web容器 tomcat,jetty,undertow 生產準備特性 指標,健康檢查,外部化配置 元件自動裝配 啟用 enableautoconfig...
學習springboot筆記(一)
1.微服務 乙個專案可以由多個小型服務構成 微服務 springboot可以快速開發微服務塊。2.springboot功能 a 簡化j2ee開發 b 整個spring技術的棧的整合 整合springmvc spring c 整個j2ee技術的整合 整合mybatis struct2 redis 3....
spring boot學習筆記(一)
翻譯看個人意願 官方介紹 springboot 會讓你非常容易的建立乙個獨立的生產級spring基礎應用,而且對於它你能做的就是 開始執行 我們採用了spring平台自主的檢視和第三方文庫,這樣你會做最少的無用功。spring boot應用只需要非常少的配置。features embed tomca...