javascript
Spring Boot Learning(模版引擎)
一. spring boot的web應(yīng)用開發(fā),是基于spring mvc
二. Spring boot 在spring默認(rèn)基礎(chǔ)上,自動配置添加了以下特性:
1. 包含了ContentNegotiatingViewResolver和BeanNameViewResolver beans。
2. 對靜態(tài)資源的支持,包括對WebJars的支持。
3. 自動注冊Converter,GenericConverter,Formatter beans。
4. 對HttpMessageConverters的支持。
5. 自動注冊MessageCodeResolver。
6. 對靜態(tài)index.html的支持。
7. 對自定義Favicon的支持。
8. 主動使用ConfigurableWebBindingInitializer bean
三. 模板引擎的選擇
FreeMarker
Thymeleaf
Velocity (1.4版本之后棄用,Spring Framework 4.3版本之后棄用)
Groovy
Mustache
注:jsp應(yīng)該盡量避免使用,原因如下:
1. jsp只能打包為:war格式,不支持jar格式,只能在標(biāo)準(zhǔn)的容器里面跑(tomcat,jetty都可以)
2. 內(nèi)嵌的Jetty目前不支持JSPs
3. Undertow不支持jsps
4. jsp自定義錯誤頁面不能覆蓋spring boot 默認(rèn)的錯誤頁面
四. FreeMarker Demo
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-freemarker</artifactId>
</dependency>
?
?
轉(zhuǎn)載于:https://www.cnblogs.com/lys0410/p/6537430.html
總結(jié)
以上是生活随笔為你收集整理的Spring Boot Learning(模版引擎)的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 关于直播学习笔记-005-nginx-r
- 下一篇: node.js JS对象和JSON字符串