springboot + thymeleaf配置

一、新建springboot 項目

下面是目錄結構

二、添加依賴

<dependency>
   <groupId>org.springframework.boot</groupId>
   <artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>

三、屬性文件

spring.thymeleaf.prefix=classpath:/templates/
spring.thymeleaf.check-template-location=true
spring.thymeleaf.cache=false
spring.thymeleaf.suffix=.html
spring.thymeleaf.encoding=UTF-8
spring.thymeleaf.mode=HTML5
spring.thymeleaf.servlet.content-type=text/html

四、控制文件

@Controller
@RequestMapping("upload")
public class UploadController {
   private final org.slf4j.Logger logger = LoggerFactory.getLogger(getClass());
​
   @RequestMapping(value = "uploadBlog",method = RequestMethod.POST)
   public String uploadBlog(MultipartFile file){
​
       return "sc";
  }
​
   @RequestMapping(value = "toUploadBlog",method = RequestMethod.GET)
   public String toUploadBlog(){
       return "sc";
  }
​
}

五、遇到的問題

解決thymeleaf模板嚴格要求格式

   <!-- https://mvnrepository.com/artifact/net.sourceforge.nekohtml/nekohtml -->
  <dependency>
      <groupId>net.sourceforge.nekohtml</groupId>
      <artifactId>nekohtml</artifactId>
      <version>1.9.22</version>
  </dependency>

下面是demo

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章