新建项目“mybatis1011”,结构如下
导jar包
复制jar中的包到“spring1010”下的“lib”包中,右键“lib”–“Add as Library”–“ok”
“lib”包内容如下
“bean”中“User”代码如下,并使用“Getter and Setter”和“toString”方法
private int id;
private String username;
private String password;
“IUserDao”代码如下
package com.zhongruan.dao;
import com.zhongruan.bean.User;
import java.util.List;
public interface IUserDao {
List<User> findAll();
void deleteById(int id);
void updateById(User user);
void insertById(User user);
}
“UserMapper.xml”代码如下
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.zhongruan.dao.IUserDao">
<select id="findAll" resultType="com.zhongruan.bean.User">
select * from tb_user
</select>
<delete id="deleteById" parameterType="int">
delete from tb_user where id=#{id}
</delete>
<update id="updateById" parameterType="com.zhongruan.bean.User">
update tb_user set username=#{username},password=#{password} where id=#{id}
</update>
<insert id="insertById" parameterType="com.zhongruan.bean.User">
insert into tb_user(username,password) value (#{username},#{password})
</insert>
</mapper>
“Test”代码如下
package com.zhongruan.test;
import com.zhongruan.bean.User;
import org.apache.ibatis.io.Resources;
import org.apache.ibatis.session.SqlSession;
import org.apache.ibatis.session.SqlSessionFactory;
import org.apache.ibatis.session.SqlSessionFactoryBuilder;
import java.io.IOException;
import java.io.Reader;
import java.util.List;
public class Test {
public static void main(String[] args) throws IOException {
Reader reader= Resources.getResourceAsReader("sqlMapConfig.xml");
SqlSessionFactory build=new SqlSessionFactoryBuilder().build(reader);
SqlSession session=build.openSession();
//查询
/*List<User> users=session.selectList("findAll");
System.out.println(users);*/
//删除
//session.delete("deleteById",22);
//修改
/*User user=new User();
user.setId(23);
user.setUsername("aa");
user.setPassword("12345");
session.update("updateById",user);*/
//增加
User user=new User();
user.setUsername("aa");
user.setPassword("12345");
session.insert("insertById",user);
session.commit();
session.close();
}
}
“sqlMapConfig.xml”代码如下
<?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="com.mysql.jdbc.Driver"></property>
<property name="url" value="jdbc:mysql://localhost:3306/zjgm?characterEncoding=utf-8"></property>
<property name="username" value="root"></property>
<property name="password" value="123456"></property>
</dataSource>
</environment>
</environments>
<mappers>
<mapper resource="com/zhongruan/dao/UserMapper.xml"></mapper>
</mappers>
</configuration>