mvn spring-boot:run
- Model: 在spring mvc,Model是在controller里设置的,所以需要看controller中代码
- View:本例中的view都在 src/main/resources/templates 目录下
- Controller: 在本例中,有两个Controller,在src/main/java/cn/devmgr/tutorial/springmvc目录下
src/main/resources/static 目录下的文件可以直接被浏览器访问到,可以放置css、js、图片等,在生产环境上,这些文件放置到nginx等可以直接访问的目录下更好,nginx/apache等处理静态内容的速度要好过tomcat。访问量大的网站甚至可以单独把这些静态内容部署到CDN上。
Messages.properties 文件是模版中使用的多语言字符串文件,如果需要对应多语言,可创建Messages_zh_CN.properties, Messages_en_US.properties等文件分别存储需要的语言的字符。
在模版中可以通过th:text="#{xxx}" (xxx是Message.properites中的key)来显示,spring会自动找到对应语言的字符串。
<p th:text="#{welcome.text}">Welcome to our store!</p>
下面这段是用来配置不缓存模版的,在开发过程中特别有用,但在生产环境下最好设置成true,使用缓存速度会快点。 开发环境下不用cache,是因为改了模版刷新下浏览器就看到结果了。
spring:
thymeleaf:
cache: false
spring-boot-starter-web是必须的:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
如果使用thymeleaf作为模版引擎,则需要spring-boot-starter-thymeleaf依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
为了使用thymeleaf的layout功能,需要下面这个依赖:
<dependency>
<groupId> nz.net.ultraq.thymeleaf</groupId>
<artifactId>thymeleaf-layout-dialect</artifactId>
</dependency>