1. 程式人生 > 其它 >使用IDEA搭建MyBatis環境

使用IDEA搭建MyBatis環境

建立一個專案


這裡根據需求自己選擇

在pom.xml中匯入mybatis的核心jar包

Mybatis 原始碼下載
https://github.com/mybatis/mybatis-3/releases

在resources下建立一個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>


這個配置可以有多個,如果有伺服器的話可以寫伺服器上的資料庫資訊

建立mapper,然後在mybatis-config.xml中配置sql對映檔案


這裡需要注意包的路徑,在這裡就可以寫我們的sql語句了