springboot配置templates直接访问的实现

网友投稿 545 2022-11-15

springboot配置templates直接访问的实现

springboot配置templates直接访问的实现

目录springboot配置templates直接访问配置公有访问方式如下springboot的templates用法在controller中添加视图

springboot配置templates直接访问

springboot下的templates目录的资源默认是受保护的,类似于javaweb项目的WEB-INF目录,但是给每个springboot的html页面都配置控制器跳转过于麻烦

配置公有dbkLJj访问方式如下

在配置文件加如下:

spring.resources.static-locations=classpath:/META-INF/resources/, classpath:/resources/, classpath:/static/, classpath:/templadbkLJjtes/, classpath:/public/

附上spring 各种配置的官方url:方便后期查阅

springboot的templates用法

@Controller

public class HelloController {

@RequestMapping("/test")

public String test(Model model){

model.addAttribute("msg","

model.addAttribute("users", Arrays.asList("lishao","liyuan"));

return "/test";

}

}

在controller中添加视图

在html中调用

记得要导入templates的依赖

当你导入了templates依赖,

就会直接识别出来文件下的test,简单方便

org.thymeleaf

dbkLJj thymeleaf-spring5

org.springframework.boot

spring-boot-starter-thymeleaf

html中也要导入

一个是转义一个是不转义

以下是运行的结果

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:详解ES6模块化
下一篇:WebRTC音视频录制实战 七、第二节 录制音视频实战
相关文章

 发表评论

暂时没有评论,来抢沙发吧~