摘要:
1. pom.xml 加入 Thymeleaf 启动器 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId> </dependen 阅读全文
摘要:
欢迎 页面映射 会从 4个静态资源目录 + 根路径 / 中 查找 index.html 页面 会在 静态资源目录下 与 根路径查找 (按该顺序) index.html页面; 收到 "/**" 请求映射 访问 localhost:8080/ 会在上面5个目录中查找 index.html 页面(因为/也 阅读全文
摘要:
1.如果不是 /webjars/** 资源 if (!registry.hasMappingForPattern("/webjars/**")) { this.customizeResourceHandlerRegistration(registry.addResourceHandler(new S 阅读全文
摘要:
我们可以在 WebMvcAutoConfiguration 这个类下查找一个方法 addResourceHandlers public void addResourceHandlers(ResourceHandlerRegistry registry) { if (!this.resourcePro 阅读全文