您的位置:首页 > 编程语言 > Java开发

spring boot(一):入门

2018-03-03 16:17 274 查看
Spring环境配置(安装springsource-tool-suite插件)及第一个Spring HelloWorld
http://spring.io/tools/sts/all http://blog.csdn.net/q649381130/article/details/77875736
[spring boot][thymeleaf]spring boot 1.5+ 页面无法找到

<properties>
<!--
springboot 默认使用thymeleaf的2.0,即:spring-boot-starter-thymeleaf中包含的是thymeleaf2.X
springboot1.5.2+需要使用thymeleaf3.X。手动去配置
-->
<thymeleaf.version>3.0.2.RELEASE</thymeleaf.version>
<thymeleaf-layout-dialect.version>2.0.4</thymeleaf-layout-dialect.version>
</properties>


@Controller和@RestController

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: