1. springboot集成 html页面
在文件中增加
thymeleaf
的starter引用
<dependency>
<groupId></groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
springboot项目,在配置文件中增加如下配置
spring:
thymeleaf:
prefix: classpath:/templates
suffix: .html
cache: false
- prefix
prefix意为前缀 - suffix
suffix意为后缀
如我的页面为,它所在的目录结构就应该为
resource–> templates -->
在controller中,return的值则为 /hello-world
,系统会自动给加上.html
的后缀
然后增加如下controller中就可以访问到页面了
@Controller
@RequestMapping("/")
public class HelloWorldController {
@RequestMapping("hello-world")
public String index() {
return "/hello-world";
}
}
2.页面中引用本地js、css文件的路径配置
我的页面中本来都是直接使用的element-ui和vue直接提供的在线js,但是因为页面嵌套会有跨域的问题,所以页面中的js、css都要改为使用本地文件。在网上试了很多的方法,最后使用排除法缩减到最后的方法如下:
-
在
resource
目录下,创建static
目录,在static
目录下分别创建js
目录和css
目录来存放js文件和css文件。 -
在springboot入口的Application文件中增加WebMvc配置,首先继承
WebMvcConfigurationSupport
类,然后重写addResourceHandlers
方法,在里面增加对/css
路径和/js
路径的映射。public class ApplicationBootStrap extends WebMvcConfigurationSupport { public static void main(String[] args) { (, args); } @Override protected void addResourceHandlers(ResourceHandlerRegistry registry) { ("/css/**").addResourceLocations(ResourceUtils.CLASSPATH_URL_PREFIX + "/static/css/"); ("/js/**").addResourceLocations(ResourceUtils.CLASSPATH_URL_PREFIX + "/static/js/"); (registry); } }
-
页面引用配置
- 1.
html
标签 要增加xmlns:th=""
引用 - 2.
<header>
标签中增加<base th:href="@{/}">
配置 - 引入增加
th:href
配置路径,js引入增加th:src
路径配置。这里要注意link
要有rel="stylesheet"
,script
要有type="text/javascript"
的格式说明,这是规范。
然后就大功造成了。文件内配置如以下代码。
<!DOCTYPE html> <html xmlns:th=""> <head> <base th:href="@{/}"> <meta charset="UTF-8"> <!-- import CSS --> <link rel="stylesheet" href="../../static/css/" th:href="@{/css/}"/> </head> <body> <div > </div> </body> <!-- import Vue before Element --> <script src="../../static/js/vue-2.6." th:src="@{/js/vue-2.6.}" type="text/javascript"></script> <!-- import JavaScript --> <script src="../../static/js/" th:src="@{/js/}" type="text/javascript"></script> <script src="../../static/js/jquery1.7." th:src="@{/js/jquery1.7.}" type="text/javascript"></script> <script> let vm = new Vue({ el: '#app', .....业务代码省略.... }) </script> </html>
- 1.