how2j.cn

-->
下载区
文件名 文件大小
mybatis.rar 1m

解压rar如果失败,请用5.21版本或者更高版本的winrar

点击下载 winrar5.21
步骤 1 : 先运行,看到效果,再学习   
步骤 2 : 模仿和排错   
步骤 3 : 在前一步的基础上进行   
步骤 4 : 配置文件Category.xml   
步骤 5 : 增加   
步骤 6 : 删除   
步骤 7 : 获取   
步骤 8 : 修改   
步骤 9 : 查询所有   

步骤 1 :

先运行,看到效果,再学习

edit
老规矩,先下载右上角的可运行项目,配置运行起来,确认可用之后,再学习做了哪些步骤以达到这样的效果。
在确保可运行项目能够正确无误地运行之后,再严格照着教程的步骤,对代码模仿一遍。
模仿过程难免代码有出入,导致无法得到期望的运行结果,此时此刻通过比较正确答案 ( 可运行项目 ) 和自己的代码,来定位问题所在。
采用这种方式,学习有效果,排错有效率,可以较为明显地提升学习速度,跨过学习路上的各个槛。

推荐使用diffmerge软件,进行文件夹比较。把你自己做的项目文件夹,和我的可运行项目文件夹进行比较。
这个软件很牛逼的,可以知道文件夹里哪两个文件不对,并且很明显地标记出来
这里提供了绿色安装和使用教程:diffmerge 下载和使用教程
步骤 3 :

在前一步的基础上进行

edit
这一个知识点讲解通过Mybatis进行CRUD一套操作,建立在上一个知识点Mybatis 入门教程的基础上进行。
步骤 4 :

配置文件Category.xml

edit
首先一次性修改配置文件Category.xml,提供CRUD对应的sql语句。
每个SQL如何使用在后续对应操作里一一讲解。
<?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.how2java.pojo"> <insert id="addCategory" parameterType="Category" > insert into category_ ( name ) values (#{name}) </insert> <delete id="deleteCategory" parameterType="Category" > delete from category_ where id= #{id} </delete> <select id="getCategory" parameterType="_int" resultType="Category"> select * from category_ where id= #{id} </select> <update id="updateCategory" parameterType="Category" > update category_ set name=#{name} where id=#{id} </update> <select id="listCategory" resultType="Category"> select * from category_ </select> </mapper>
运行之后,如图所示可以看到 通过Mybatis查询出来的数据里有新增加的Category

通过session.insert调用addCategory对应的SQL语句

Category c = new Category();
c.setName("新增加的Category");
session.insert("addCategory",c);


addCategory对应的插入sql语句,#{name}会自动获取c对象的name属性值

<insert id="addCategory" parameterType="Category" >
insert into category_ ( name ) values (#{name})
</insert>
增加
package com.how2java; import java.io.IOException; import java.io.InputStream; import java.util.List; 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 com.how2java.pojo.Category; public class TestMybatis { public static void main(String[] args) throws IOException { String resource = "mybatis-config.xml"; InputStream inputStream = Resources.getResourceAsStream(resource); SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream); SqlSession session = sqlSessionFactory.openSession(); Category c = new Category(); c.setName("新增加的Category"); session.insert("addCategory",c); listAll(session); session.commit(); session.close(); } private static void listAll(SqlSession session) { List<Category> cs = session.selectList("listCategory"); for (Category c : cs) { System.out.println(c.getName()); } } }
<insert id="addCategory" parameterType="Category" > insert into category_ ( name ) values (#{name}) </insert>
删除id=6的对象

Category c = new Category();
c.setId(6);
session.delete("deleteCategory",c);

deleteCategory对应删除的sql语句

<delete id="deleteCategory" parameterType="Category" >
delete from category_ where id= #{id}
</delete>
package com.how2java; import java.io.IOException; import java.io.InputStream; import java.util.List; 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 com.how2java.pojo.Category; public class TestMybatis { public static void main(String[] args) throws IOException { String resource = "mybatis-config.xml"; InputStream inputStream = Resources.getResourceAsStream(resource); SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream); SqlSession session = sqlSessionFactory.openSession(); Category c = new Category(); c.setId(6); session.delete("deleteCategory",c); listAll(session); session.commit(); session.close(); } private static void listAll(SqlSession session) { List<Category> cs = session.selectList("listCategory"); for (Category c : cs) { System.out.println(c.getName()); } } }
<delete id="deleteCategory" parameterType="Category" > delete from category_ where id= #{id} </delete>
通过session.selectOne获取id=3的记录

Category c= session.selectOne("getCategory",3);


getCategory对应的sql语句:

<select id="getCategory" parameterType="_int" resultType="Category">
select * from category_ where id= #{id}
</select>
package com.how2java; import java.io.IOException; import java.io.InputStream; import java.util.List; 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 com.how2java.pojo.Category; public class TestMybatis { public static void main(String[] args) throws IOException { String resource = "mybatis-config.xml"; InputStream inputStream = Resources.getResourceAsStream(resource); SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream); SqlSession session = sqlSessionFactory.openSession(); Category c= session.selectOne("getCategory",3); System.out.println(c.getName()); // listAll(session); session.commit(); session.close(); } private static void listAll(SqlSession session) { List<Category> cs = session.selectList("listCategory"); for (Category c : cs) { System.out.println(c.getName()); } } }
<select id="getCategory" parameterType="_int" resultType="Category"> select * from category_ where id= #{id} </select>
通过session.update进行修改

session.update("updateCategory",c);

updateCategory对应的sql语句:

<update id="updateCategory" parameterType="Category" >
update category_ set name=#{name} where id=#{id}
</update>
package com.how2java; import java.io.IOException; import java.io.InputStream; import java.util.List; 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 com.how2java.pojo.Category; public class TestMybatis { public static void main(String[] args) throws IOException { String resource = "mybatis-config.xml"; InputStream inputStream = Resources.getResourceAsStream(resource); SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream); SqlSession session = sqlSessionFactory.openSession(); Category c= session.selectOne("getCategory",3); c.setName("修改了的Category名稱"); session.update("updateCategory",c); listAll(session); session.commit(); session.close(); } private static void listAll(SqlSession session) { List<Category> cs = session.selectList("listCategory"); for (Category c : cs) { System.out.println(c.getName()); } } }
<update id="updateCategory" parameterType="Category" > update category_ set name=#{name} where id=#{id} </update>
session.selectList执行查询语句

List<Category> cs = session.selectList("listCategory");

listCategory对应的sql语句

<select id="listCategory" resultType="Category">
select * from category_
</select>
package com.how2java; import java.io.IOException; import java.io.InputStream; import java.util.List; 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 com.how2java.pojo.Category; public class TestMybatis { public static void main(String[] args) throws IOException { String resource = "mybatis-config.xml"; InputStream inputStream = Resources.getResourceAsStream(resource); SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream); SqlSession session = sqlSessionFactory.openSession(); listAll(session); session.commit(); session.close(); } private static void listAll(SqlSession session) { List<Category> cs = session.selectList("listCategory"); for (Category c : cs) { System.out.println(c.getName()); } } }
<select id="listCategory" resultType="Category"> select * from category_ </select>


HOW2J公众号,关注后实时获知最新的教程和优惠活动,谢谢。


问答区域    
2021-08-05 增加里 报错Cause: java.lang.ClassNotFoundException: Cannot find class: Category
BZBZBZ

代码和所长一样,然后报错找不到Category




2 个答案

AbCdEFf
答案时间:2021-08-09
有趣

BZBZBZ
答案时间:2021-08-06
懂了,没写别名和全路径



回答已经提交成功,正在审核。 请于 我的回答 处查看回答记录,谢谢
答案 或者 代码至少填写一项, 如果是自己有问题,请重新提问,否则站长有可能看不到




2021-07-11 commit和close
萌森




session.commit(); session.close(); 当我把他注释掉,数据照常写入数据库,数据库里查询也是存在的,commit不是提交事务吗? 那么这两句是什么含义呢,作用呢
package com.ms.test;

import java.io.IOException;
import java.io.InputStream;
import java.util.List;

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 com.ms.pojo.Category;

public class CRUDTest {
	//展示效果调用查询所有的方法
	private static void listAll(SqlSession session) {
		List<Category> cs = session.selectList("listCategory");
        for (Category c : cs) {
            System.out.println(c.getName());
        }
	}
	public static void main(String[] args) throws IOException {
		String resource = "mybatis-config.xml";
		InputStream inputStream = Resources.getResourceAsStream(resource);
		SqlSessionFactory sqlSessionFactory =new SqlSessionFactoryBuilder().build(inputStream);
		SqlSession session=sqlSessionFactory.openSession();
		//C
		Category c=new Category();//new一个实体
		c.setName("添加一个category3");//存入数据
		session.insert("addCategory", c);//调用mybatis封装方法
		listAll(session);//展示效果
//		session.commit();
//		session.close();
		
	}
}

							


2 个答案

四方1
答案时间:2023-08-10
可能正常情况下没啥用吧 但是保不齐有什么特殊情况,mybatis没法自动更新数据库。这时手动commit一下、close一下,能避免意想不到的小bug。 类似”哪里拿的就放回哪去“,算是一种好习惯吧

萌森
答案时间:2021-07-11
Your MariaDB connection id is 11
Server version: 10.4.19-MariaDB mariadb.org binary distribution
xampp集成的数据库以及版本



回答已经提交成功,正在审核。 请于 我的回答 处查看回答记录,谢谢
答案 或者 代码至少填写一项, 如果是自己有问题,请重新提问,否则站长有可能看不到





2021-05-20 ??
2021-05-08 parameterType、resultType不讲解一下?
2020-12-05 查询语句报错


提问太多,页面渲染太慢,为了加快渲染速度,本页最多只显示几条提问。还有 33 条以前的提问,请 点击查看

提问之前请登陆
提问已经提交成功,正在审核。 请于 我的提问 处查看提问记录,谢谢
关于 JAVA 框架-Mybatis-CRUD 的提问

尽量提供截图代码异常信息,有助于分析和解决问题。 也可进本站QQ群交流: 578362961
提问尽量提供完整的代码,环境描述,越是有利于问题的重现,您的问题越能更快得到解答。
对教程中代码有疑问,请提供是哪个步骤,哪一行有疑问,这样便于快速定位问题,提高问题得到解答的速度
在已经存在的几千个提问里,有相当大的比例,是因为使用了和站长不同版本的开发环境导致的,比如 jdk, eclpise, idea, mysql,tomcat 等等软件的版本不一致。
请使用和站长一样的版本,可以节约自己大量的学习时间。 站长把教学中用的软件版本整理了,都统一放在了这里, 方便大家下载: https://how2j.cn/k/helloworld/helloworld-version/1718.html

上传截图