springboot 如果静态html 在static目录下我怎么用控制器跳转啊
改成这个试试:
return "forward:/hh.html";
#默认使用配置
spring:
profiles:
active: dev
mvc: ## 配置静态页面
view:
prefix: /pages/
suffix: .html
或者 application.property
spring.mvc.view.prefix=/pages/
spring.mvc.view.suffix=.html