springboot⽤controller跳转html页⾯的实现
在学习SpringBoot的过程中遇到⼀个问题,因为SpringBoot是集成了tomcat的,所以项⽬是打成jar包,通过SpringMVC注解的⽅式去运⾏的,所以静态页⾯就放在maven ⼯程的resources⽬录下的templates⽬录下所以怎么去跳转是个问题,现在就是解决这个问题
⾸先看项⽬结构
<!-- 1.创建⼀个Maven⼯程,选择jar类型项⽬2.引⼊SpringBootMaven依赖。 -->
<!-- Maven parent ⽬的,聚合⼯程、继承关系 -->
<!--Spring parent ⽬的:统⼀整合第三⽅框架依赖信息 (SpringBoot ⽀持依赖不需要写版本号) -->
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.0.RELEASE</version>
</parent>
<dependencies>
<!-- -springboot 整合Web组件整合SpringMVC 就会把传统⽅式的SpringMVC依赖的jar全部给下载来 -->
<!-- 引⼊spring-boot-starter-web 帮你整合好所有相关的依赖jar包原理 maven依赖传递 -->
<!-- 原理: spring-boot-starter-parent< 中,整合号相关 jar依赖信息 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
</dependencies>
springboot架构图controller代码,这⾥为了更加的清楚项⽬结构带上包的路径
package ller;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
@Controller
public class FTLIndexController {
@RequestMapping("/ftlIndex")
public String ftlIndex() {
System.out.println("fff");
return "user/index";
}
}
html代码直接截图
访问页⾯
application.properties配置⽂件中不需要写任何东西
到此这篇关于springboot⽤controller跳转html页⾯的实现的⽂章就介绍到这了,更多相关springboot controller跳转html内容请搜索以前的⽂章或继续浏览下⾯的相关⽂章希望⼤家以后多多⽀持!

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。