中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

springboot如何整合mybatis

小億
76
2024-01-17 03:54:58
欄目: 編程語言

要將Spring Boot與MyBatis整合,可以按照以下步驟操作:

步驟1:在pom.xml文件中添加MyBatis和MyBatis-Spring-Boot-Starter依賴。

<dependency>
    <groupId>org.mybatis.spring.boot</groupId>
    <artifactId>mybatis-spring-boot-starter</artifactId>
    <version>2.1.4</version>
</dependency>

步驟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")
    List<User> getAllUsers();
}

在resources/mapper目錄下創建UserMapper.xml文件,配置SQL語句。

<mapper namespace="com.example.mapper.UserMapper">

    <resultMap id="BaseResultMap" type="com.example.entity.User">
        <id column="id" property="id" />
        <result column="name" property="name" />
        <result column="email" property="email" />
    </resultMap>

    <select id="getAllUsers" resultMap="BaseResultMap">
        select * from users
    </select>
</mapper>

步驟4:創建Service和Controller。

創建一個UserService接口和UserServiceImpl實現類。

public interface UserService {

    List<User> getAllUsers();
}

@Service
public class UserServiceImpl implements UserService {

    @Autowired
    private UserMapper userMapper;

    public List<User> getAllUsers() {
        return userMapper.getAllUsers();
    }
}

@RestController
public class UserController {

    @Autowired
    private UserService userService;

    @GetMapping("/users")
    public List<User> getAllUsers() {
        return userService.getAllUsers();
    }
}

以上就是整合Spring Boot和MyBatis的基本步驟。在Spring Boot啟動時,MyBatis會自動根據配置文件和注解掃描Mapper接口,并生成代理實現類。可以使用這些Mapper接口來訪問數據庫。

0
大渡口区| 奉贤区| 自贡市| 黎平县| 图木舒克市| 丽江市| 读书| 星座| 德钦县| 资阳市| 会东县| 三门峡市| 海城市| 定州市| 九寨沟县| 临海市| 鹿泉市| 内黄县| 乌审旗| 乃东县| 镶黄旗| 于都县| 昌都县| 平泉县| 长丰县| 康定县| 姚安县| 中卫市| 玛纳斯县| 高平市| 武乡县| 章丘市| 百色市| 环江| 泾源县| 台北县| 越西县| 项城市| 松阳县| 岗巴县| 光泽县|