要将Spring Boot与MyBatis整合,可以按照以下步骤操作:
步骤1:在pom.xml文件中添加MyBatis和MyBatis-Spring-Boot-Starter依赖。
org.mybatis.spring.boot mybatis-spring-boot-starter 2.1.4
步骤2:配置数据库连接信息和MyBatis属性。
在application.properties或application.yml文件中添加以下配置:
spring.datasource.url=jdbc:mysql://localhost:3306/db_example spring.datasource.username=db_username spring.datasource.password=db_password mybatis.mapper-locations=classpath*:mapper/*.xml
步骤3:创建MyBatis的Mapper接口和对应的XML文件。
创建一个Mapper接口,例如UserMapper.java,并编写Mapper方法。
import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Select; import java.util.List; @Mapper public interface UserMapper { @Select("select * from users") ListgetAllUsers(); }
在resources/mapper目录下创建UserMapper.xml文件,配置SQL语句。
步骤4:创建Service和Controller。
创建一个UserService接口和UserServiceImpl实现类。
public interface UserService { ListgetAllUsers(); } @Service public class UserServiceImpl implements UserService { @Autowired private UserMapper userMapper; public List getAllUsers() { return userMapper.getAllUsers(); } } @RestController public class UserController { @Autowired private UserService userService; @GetMapping("/users") public List getAllUsers() { return userService.getAllUsers(); } }
以上就是整合Spring Boot和MyBatis的基本步骤。在Spring Boot启动时,MyBatis会自动根据配置文件和注解扫描Mapper接口,并生成代理实现类。可以使用这些Mapper接口来访问数据库。