今天就跟大家聊聊有关Springboot中怎么实现路径映射,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据这篇文章可以有所收获。
在spring boot中集成thymeleaf后,我们知道thymeleaf的默认的html的路径为classpath:/templates也就是resources/templates,那如何访问这个路径下面的静态页面呢?假设我们要访问一个页面为hello.html。
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>Title</title></head><body><h2>hell spring boot!!</h2></body></html>
该页面位于templates下,当然也可以在application.properties文件中修改默认路径。
spring.thymeleaf.prefix=classpath:/templates
1.使用controller中的方法直接返回该页面
@Controllerpublic class HelloController { @GetMapping("/hello") public String hello(){ //在集成thymeleaf后 会在默认路径下寻找名字为hello的html页面 return "hello"; }}
2.实现WebMvcConfigure接口中的addViewControllers方法进行路径的映射
@Configurationpublic class WebMvcConfig implements WebMvcConfigurer{ @Override public void addViewControllers(ViewControllerRegistry registry) { //第一个路径为类似于Controller中的接口的路径 第二个view为要访问的页面 //实现不需要进行数据渲染的页面的路径映射 当然这些页面没有在默认的五个静态页面访问路径下 registry.addViewController("/hopec").setViewName("hello"); //如果需要添加多个页面直接在下面继续添加即可 }}
看完上述内容,你们对Springboot中怎么实现路径映射有进一步的了解吗?如果还想了解更多知识或者相关内容,请关注亿速云行业资讯频道,感谢大家的支持。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。