标签:
技术介绍
项目结构:
1、pom.xml
1 <!-- thymeleaf --> 2 <dependency> 3 <groupId>org.springframework.boot</groupId> 4 <artifactId>spring-boot-starter-thymeleaf</artifactId> 5 </dependency> 6 <!-- 7 devtools可以实现页面热部署(即页面修改后会立即生效,这个可以直接在application.properties文件中配置spring.thymeleaf.cache=false来实现), 8 实现类文件热部署(类文件修改后不会立即生效),实现对属性文件的热部署。 9 即devtools会监听classpath下的文件变动,并且会立即重启应用(发生在保存时机),注意:因为其采用的虚拟机机制,该项重启是很快的 10 --> 11 <dependency> 12 <groupId>org.springframework.boot</groupId> 13 <artifactId>spring-boot-devtools</artifactId> 14 <optional>true</optional><!-- optional=true,依赖不会传递,该项目依赖devtools;之后依赖myboot项目的项目如果想要使用devtools,需要重新引入 --> 15 </dependency>
说明:如果仅仅使用thymeleaf,只需要引入thymeleaf;如果需要使用devtools,只需要引入devtools。
注意:
1 <!-- 用于将应用打成可直接运行的jar(该jar就是用于生产环境中的jar) 值得注意的是,如果没有引用spring-boot-starter-parent做parent, 2 且采用了上述的第二种方式,这里也要做出相应的改动 --> 3 <plugin> 4 <groupId>org.springframework.boot</groupId> 5 <artifactId>spring-boot-maven-plugin</artifactId> 6 <configuration> 7 <fork>true</fork><!-- 如果没有该项配置,肯呢个devtools不会起作用,即应用不会restart --> 8 </configuration> 9 </plugin>
即添加了fork:true
2、ThymeleafController
1 package com.xxx.firstboot.web; 2 3 import org.springframework.stereotype.Controller; 4 import org.springframework.ui.Model; 5 import org.springframework.web.bind.annotation.RequestMapping; 6 import org.springframework.web.bind.annotation.RequestMethod; 7 import org.springframework.web.bind.annotation.RequestParam; 8 9 import io.swagger.annotations.Api; 10 import io.swagger.annotations.ApiOperation; 11 12 @Api("测试Thymeleaf和devtools") 13 @Controller 14 @RequestMapping("/thymeleaf") 15 public class ThymeleafController { 16 17 @ApiOperation("第一个thymeleaf程序") 18 @RequestMapping(value = "/greeting", method = RequestMethod.GET) 19 public String greeting(@RequestParam(name = "name", required = false, defaultValue = "world") String name, 20 Model model) { 21 model.addAttribute("xname", name); 22 return "greet"; 23 } 24 25 }
说明:Model可以作为一个入参,在代码中,将属性以"key-value"的形式存入model,最后直接返回字符串即可。
3、greet.html
1 <!DOCTYPE HTML> 2 <html xmlns:th="http://www.thymeleaf.org"> 3 <head> 4 <title>第一个thymeleaf程序</title> 5 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> 6 </head> 7 <body> 8 <p th:text="‘Hello, ‘ + ${xname} + ‘!‘" /> 9 <div>1234567890!!!xx</div> 10 </body> 11 </html>
注意:
以上的目录与ssm中开发的不一样,ssm中会放在src/main/webapp下
测试:
补充:
第十七章 springboot + devtools(热部署)
标签:
原文地址:http://www.cnblogs.com/java-zhao/p/5502398.html