springboot web点击跳转案例
时间: 2023-10-20 09:04:28 浏览: 83
以下是一个简单的Spring Boot Web点击跳转案例:
1. 创建一个Spring Boot项目。
2. 在项目的src/main/resources/templates目录下创建一个名为"home.html"的HTML文件,用于显示主页内容。
3. 在HomeController类中添加一个方法,用于处理主页请求并返回"home"视图:
```
@Controller
public class HomeController {
@RequestMapping("/")
public String home() {
return "home";
}
}
```
4. 在home.html中添加一个链接,用于跳转到另一个页面:
```
<a href="/page">Click here to go to the other page</a>
```
5. 在HomeController类中添加另一个方法,用于处理跳转页面请求并返回"page"视图:
```
@Controller
public class HomeController {
@RequestMapping("/")
public String home() {
return "home";
}
@RequestMapping("/page")
public String page() {
return "page";
}
}
```
6. 在src/main/resources/templates目录下创建一个名为"page.html"的HTML文件,用于显示跳转页面内容。
7. 运行应用程序并打开浏览器,在地址栏中输入"http://localhost:8080/",按下回车键,即可看到主页内容。点击链接,即可跳转到另一个页面。
这就是一个简单的Spring Boot Web点击跳转案例。
阅读全文