在springboot中使用mybatis连接数据库显示
时间: 2024-05-13 07:21:06 浏览: 94
使用Mybatis连接数据库的步骤如下:
1. 添加Mybatis和Mybatis-Spring的依赖
```xml
<!-- Mybatis -->
<dependency>
<groupId>org.mybatis.spring.boot</groupId>
<artifactId>mybatis-spring-boot-starter</artifactId>
<version>2.2.0</version>
</dependency>
```
2. 配置数据源
在`application.properties`中配置数据源的属性,例如:
```properties
spring.datasource.url=jdbc:mysql://localhost:3306/test
spring.datasource.username=root
spring.datasource.password=password
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
```
3. 创建Mapper接口和SQL语句
Mapper接口是指定SQL语句的接口。可以使用注解或XML来指定SQL语句。
例如,创建一个UserMapper接口和XML文件:
UserMapper.java
```java
@Mapper
public interface UserMapper {
@Select("SELECT * FROM user WHERE id = #{id}")
User findById(long id);
}
```
UserMapper.xml
```xml
<mapper namespace="com.example.mapper.UserMapper">
<select id="findById" resultType="com.example.model.User">
SELECT * FROM user WHERE id = #{id}
</select>
</mapper>
```
4. 注册Mapper接口
在启动类中添加`@MapperScan`注解,指定Mapper接口所在的包:
```java
@SpringBootApplication
@MapperScan("com.example.mapper")
public class Application {
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
}
```
5. 使用Mapper接口进行数据操作
在需要使用Mapper接口的地方注入即可,例如:
```java
@Service
public class UserService {
@Autowired
private UserMapper userMapper;
public User findById(long id) {
return userMapper.findById(id);
}
}
```
以上就是在Spring Boot中使用Mybatis连接数据库的步骤。
阅读全文