Springboot使用thymeleaf进行页面跳转

要修改的文件

1.在porm文件中添加依赖

		
			org.springframework.boot
			spring-boot-starter-thymeleaf
			2.0.6.RELEASE
		

2.java代码

@Controller
public class IndexController {
   @RequestMapping("/vm")
    public String news(){
        return "hello";//hello是页面的名字,用hello.html也可以
    }
}

3.在src/main/resources/templates中创建一个hello.html文件用于显示




    
    Title


hello themeleaf

4.(可选)如果按上面步骤还不行的话可以试试在application.properties文件中添加

spring.thymeleaf.prefix=classpath:/templates/
spring.thymeleaf.cache=false

你可能感兴趣的:(Spring,Boot)