MyBatis 作為一個基于 Java 的持久層框架,經(jīng)常需要和數(shù)據(jù)庫中的數(shù)據(jù)進行交互動作。下面我將和大家分享在 IDEA 軟件中搭建 MyBatis 框架的詳細步驟。
創(chuàng)建一個項目
這里根據(jù)需求自己選擇
在pom.xml中導(dǎo)入mybatis的核心jar包
Mybatis 源碼下載
https://github.com/mybatis/mybatis-3/releases
在resources下創(chuàng)建一個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>
這個配置可以有多個,如果有服務(wù)器的話可以寫服務(wù)器上的數(shù)據(jù)庫信息
創(chuàng)建mapper,然后在mybatis-config.xml中配置sql映射文件
這里需要注意包的路徑,在這里就可以寫我們的sql語句了
以上就是使用 IDEA 搭建 MyBatis 環(huán)境的詳細內(nèi)容,想要了解更多關(guān)于 IDEA 搭建項目的具體操作資料請關(guān)注W3Cschool其它相關(guān)文章!