SpringBoot不使用模板引擎直接返回Html怎么配置?
2 回答
陪伴而非守候
TA贡献1757条经验 获得超8个赞
在resource目录下面建立public文件夹,里面方静态页面
访问路径为/xx.html
在Controller里面直接return "xx.html"
暮色呼如
TA贡献1853条经验 获得超9个赞
@Configuration
public class MvcConfigurer extends WebMvcConfigurerAdapter {
@Override
public void addViewControllers(ViewControllerRegistry registry) {
registry.addViewController("/home").setViewName("home.html");
registry.setOrder(Ordered.HIGHEST_PRECEDENCE);
}
@Override
public void configurePathMatch(PathMatchConfigurer configurer) {
super.configurePathMatch(configurer);
configurer.setUseSuffixPatternMatch(false);//当此参数设置为true的时候,那么/user.html,/user.aa,/user.*都能是正常访问的。
}
}
- 2 回答
- 0 关注
- 4345 浏览
添加回答
举报
0/150
提交
取消