找了一天的方法,什么创工具类是还有重写方法啊还有什么StaticController类继承WebMvcConfigurerAdapter 重写addResourceHandlers 这些都解决不了,最后乱七八糟尝试了很多方法,在配置里改了就没问题了 记录一下,
1.pom.xml
<!-- 引入freeMarker的依赖包-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-freemarker</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
2.
2.1 在application.yml
spring:
mvc:
static-path-pattern: /static/**
2.2或者是application.properties
spring.mvc.static-path-pattern=/static/**
#1.项目启动的端口
server:
port: 8080
servlet:
context-path: /springboot
#############################################数据库配置####################################################
#2.数据库连接参数
spring:
datasource:
driver-class-name: com.mysql.cj.jdbc.Driver
url: jdbc:mysql://localhost:3306/test?useUnicode=true&characterEncoding=utf8&serverTimezone=GMT%2B8&useSSL=false
username: root
password: 123456
#设定静态文件路径,js,css等
mvc:
static-path-pattern: /static/**
# resources:
# static-locations: classpath:/img/
#############################################freemarker配置####################################################
# FreeMarker模板引擎
# freemarker与jsp 的区别:都可以做动态网页
# Jsp可以访问后台数据,freemarker被动接收传过来的数据,ogl表达式。
# freemarker快,jsp先要转译成Java源码再编译成 class文件加载类对象再实例化初始化服务
freemarker:
#指定HttpServletRequest的属性是否可以覆盖controller的model的同名项
allow-request-override: false
#req访问request
request-context-attribute: req
#后缀名freemarker默认后缀为.ftl,当然你也可以改成自己习惯的.html
suffix: .html
#设置响应的内容类型
content-type: text/html;charset=utf-8
#是否允许mvc使用freemarker
enabled: true
#是否开启template caching
cache: false
#设定模板的加载路径,多个以逗号分隔,默认: [“classpath:/templates/”]
template-loader-path: classpath:/templates/
#设定Template的编码
charset: utf-8
#数字格式化,无小数点
number_format: 0.##
#############################################Mybatis配置####################################################
#3.1配置映射类所在的包
#3.2mapper文件所在路径,这样写可匹配mapper目录下的所有mapper,包括其子目录下的
mybatis:
mapper-locations: classpath*:mapper/*.xml
type-aliases-package: com.example.springboot.model
# 日志
logging:
level:
com.example.springboot.mapper: debug
加了红色框里的代码,解决了我js css img等文件找不到老是报404
3. HTML
也尝试了很多方法,都不适合我,最终在application.yml 修改了配置解决我的问题,记录一下,不对的地方多多指正