这篇文章给大家介绍如何进行跳羚配置模板直接访问的实现,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。
springboot配置templates直接访问
跳羚下的模板目录的资源默认是受保护的,类似于javaweb项目的网络信息目录,但是给每个跳羚的超文本标记语言页面都配置控制器跳转过于麻烦
配置公有访问方式如下
在配置文件加如下:
春天。资源。static-locations=类路径:/META-INF/resources/,类路径:/resources/,类路径:/static/,类路径:/templates/,类路径:/public/
附上春天各种配置的官方url:方便后期查阅
springboot的templates用法
@控制器
publicclassHelloController{
@RequestMapping('/test ')
公共字符串测试(模型模型){ 0
model.addAttribute('msg ',' h2templates测试/H2 ';
model.addAttribute('users ',Arrays.asList('邵丽','梨园');
返回/test ';
}
}
在controller中添加视图
在超文本标记语言中调用
身体
h4test/h4
!-不转义-
divth:text='${msg}'/div
!-转义h2 -
divth:utext='${msg}'/div
人力资源
h4th :每个=' user : $ { users } ' th : text=' $ { user } '/H4
/body记得要导入模板的依赖
当你导入了模板依赖,
就会直接识别出来文件下的测试,简单方便
!-模板-
属国
groupIdorg.thymeleaf/groupId
artifactId百里叶-spring5/artifactId
/依赖性
属国
groupIdorg.springframework.boot/groupId
artifactId弹簧靴启动器-百里香叶/artifactId
/dependencyhtml中也要导入
html lang=' en ' xmlns : th=' http://www。w3。org/1999/XHTML '一个是转义一个是不转义
以下是运行的结果
关于如何进行跳羚配置模板直接访问的实现就分享到这里了,希望
内容来源网络,如有侵权,联系删除,本文地址:https://www.230890.com/zhan/152468.html