spring webmvc组合thymeleaf视图

https://www.thymeleaf.org/

pom.xml

    
      org.springframework
      spring-webmvc
      5.1.2.RELEASE
    

    
      org.thymeleaf
      thymeleaf
      3.0.11.RELEASE
    

    
      org.thymeleaf
      thymeleaf-spring5
      3.0.11.RELEASE
    

spring-webmvc的配置文件中加入


    
        
        
        
        
        
    

    
        
    

    
        
        
    

controller中加入

@RequestMapping("/regist")
    public String regist(){
        return "regist";
    }

目录结构

├── WEB-INF
│   ├── mvc-servlet.xml
│   ├── mvc-servlet_bak.xml
│   ├── templates
│   │   └── regist.html
│   └── web.xml

你可能感兴趣的:(spring webmvc组合thymeleaf视图)