问题:
页面跳转出现报错:


解决办法:
首先添加依赖:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>

然后在application.yml文件里添加以下内容:
thymeleaf:
cache: false
prefix: classpath:/static/
encoding: UTF-8 #编码
suffix: .html #模板后缀
mode: HTML #模板
mybatis-plus:
mapper-locations: classpath:mapper/*.xml

2427

被折叠的 条评论
为什么被折叠?



