MyBatis 作為一個(gè)基于 Java 的持久層框架,經(jīng)常需要和數(shù)據(jù)庫(kù)中的數(shù)據(jù)進(jìn)行交互動(dòng)作。下面我將和大家分享在 IDEA 軟件中搭建 MyBatis 框架的詳細(xì)步驟。
創(chuàng)建一個(gè)項(xiàng)目
這里根據(jù)需求自己選擇
在pom.xml中導(dǎo)入mybatis的核心jar包
Mybatis 源碼下載
https://github.com/mybatis/mybatis-3/releases
在resources下創(chuàng)建一個(gè)mybatis-config.xml文件寫入mybatis框架的核心配置文件
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE configuration PUBLIC "-//mybatis.org//DTD Config
3.0//EN" "http://mybatis.org/dtd/mybatis-3-config.dtd">
<configuration>
<environments default="development">
<environment id="development">
<transactionManager type="JDBC"></transactionManager>
<dataSource type="POOLED">
<property name="driver" value="" />
<property name="url" value="" />
<property name="username" value="" />
<property name="password" value=""/>
</dataSource>
</environment>
</environments>
<mappers>
<mapper>
<!-- 配置sql映射文件 -->
resource="com/sxt/mybatisDemo/mapper/UserMapper.xml"/>
</mappers>
</configuration>
這個(gè)配置可以有多個(gè),如果有服務(wù)器的話可以寫服務(wù)器上的數(shù)據(jù)庫(kù)信息
創(chuàng)建mapper,然后在mybatis-config.xml中配置sql映射文件
這里需要注意包的路徑,在這里就可以寫我們的sql語(yǔ)句了
以上就是使用 IDEA 搭建 MyBatis 環(huán)境的詳細(xì)內(nèi)容,想要了解更多關(guān)于 IDEA 搭建項(xiàng)目的具體操作資料請(qǐng)關(guān)注W3Cschool其它相關(guān)文章!