IDEA搭建springboot+jsp +MySQL
时间: 2023-08-30 14:05:14 浏览: 140
idea +spring boot +jsp
以下是在 IDEA 中搭建 springboot+jsp+MySQL 的步骤:
1.创建一个新的 Spring Boot 项目。
2.在 pom.xml 文件中添加 JSP 支持和 MySQL 驱动依赖:
```xml
<dependency>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-jasper</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
</dependency>
```
3.在 application.properties 文件中配置 MySQL 数据库连接信息:
```properties
spring.datasource.url=jdbc:mysql://localhost:3306/dbname?useUnicode=true&characterEncoding=utf-8&useSSL=false
spring.datasource.username=root
spring.datasource.password=password
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
```
4.创建一个 JSP 页面。在 resources/templates 目录下创建 index.jsp 文件:
```jsp
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<title>Spring Boot with JSP</title>
</head>
<body>
<h1>Hello, World!</h1>
</body>
</html>
```
5.创建一个 Controller 类,并在其中添加处理请求的方法:
```java
@Controller
public class HomeController {
@RequestMapping("/")
public String index() {
return "index";
}
}
```
6.运行项目并访问 http://localhost:8080/,应该会看到 Hello, World! 的字样。
这样就完成了在 IDEA 中搭建 springboot+jsp+MySQL 的步骤。
阅读全文