In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-01-14 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/02 Report--
This article introduces you how to implement springboot configuration templates direct access, the content is very detailed, interested friends can refer to, hope to be helpful to you.
Springboot configures templates direct access
The resources of the templates directory under springboot are protected by default, similar to the WEB-INF directory of the javaweb project, but it is too troublesome to configure the controller jump for each springboot html page
Configure public access as follows
Add the following to the configuration file:
Spring.resources.static-locations=classpath:/META-INF/resources/, classpath:/resources/, classpath:/static/, classpath:/templates/, classpath:/public/
Attached is the official url of various configurations of spring: for later reference.
Templates usage of springboot @ Controllerpublic class HelloController {@ RequestMapping ("/ test") public String test (Model model) {model.addAttribute ("msg", "templates Test"); model.addAttribute ("users", Arrays.asList ("lishao", "liyuan")); return "/ test";}} add views to controller
Call in html
Test
Remember to import the dependencies of templates
When you import templates dependencies
Will directly identify the test under the file, simple and convenient
Org.thymeleaf thymeleaf-spring5 org.springframework.boot spring-boot-starter-thymeleaf
Import in html as well
One is escape and the other is not.
The following is the result of the run
On how to configure springboot templates direct access implementation is shared here, I hope that the above content can be of some help to you, can learn more knowledge. If you think the article is good, you can share it for more people to see.
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.