springboot中的web项目不能访问templates中的静态资源

方法1:

重新创建文件夹,配置yml文件:

spring.resources.static-locations=classpath:/view/
spring.mvc.view.suffix=.html

 

方法2:

controller里return后面加上html

@Controller
public class HelloController {

    @GetMapping("/aaa")
    public String hello(){
        return "success.html";
    }

}

 

posted @ 2019-05-24 16:33  MagicAsa  阅读(1927)  评论(0编辑  收藏  举报