问题:想让实现在控制器中,Ctrl 点击可以跳转return返回的页面【效果图如下:】
解决:
- 在pom文件中,将这个版本改为2.6.8
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.6.8</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
- 添加thymeleaf依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
- 控制器注解用**@Controller**,因为controller中定义对应的访问路由及返回的页面,而@RestController没有
@Controller //thymeleaf 依赖和@Controller可跳转return页面
@RequestMapping("user")
public class UserController {
@GetMapping("/test")
public String test(){
return "test";
}
}
- SpringMVC配置【此配置为默认配置,无需添加,更改时需自定义】
spring:
mvc:
view:
prefix:/suffix: .html
- 当然,html文件默认放在classpath:/templates下【无需添加】,如果要自定义路径,需要在yml配置文件中自定义配置
自定义配置如下:
spring:
thymeleaf:
suffix: .html
prefix: classpath:/xx/xx/
比如配置为:prefix: classpath:/templates/,现要返回templates/test/test.html,
controller就要返回 “test/test”
至此,完结。有用点个赞呗
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/133743.html