mybatis入门
Posted flowernotgiveyou
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mybatis入门相关的知识,希望对你有一定的参考价值。
============简单的mybatis入门
1.环境:idea 2019.3
2.目录结构及步骤
(1)lib文件夹存放,mybatis的相关依赖jar包,和数据库的驱动包
jar包下载地址:http://www.mybatis.cn/82.html,选这个而不选github的原因是在github上面下了10分钟没下载完
(2)entity存放实体,以及sql语句的映射文件
实体的内容根据自己数据库中字段的不同而不同
<mapper namespace="cn.sxt.entity.mapper"> //此处可以随意命名 <select id="selectPlayer" resultType="cn.sxt.entity.Player">//此处为返回值,指定路径为entity下面的实体 select * from player where id = #{id} </select> </mapper>
(3)test编写的测试代码
测试代码有需要注意到地方
public static void main(String[] args) throws IOException { SqlSession session = MyBatisUtil.getSession(); for(int i=1;i< 99; i++){ Player player = session.selectOne("cn.sxt.entity.mapper.selectPlayer",i);
//此处指向的地址是映射文件里的代码 System.out.println("id="+player.getId()+",name="+player.getName()+", player="+player.getPlayer()); } session.close(); }
(4)util存放创建的SessionFactory
public static SqlSessionFactory getSqlSessionFactory() throws IOException { String resource = "mybatis.cfg.xml";//核心配置文件 InputStream inputStream = Resources.getResourceAsStream(resource); SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream); return sqlSessionFactory; } public static SqlSession getSession() throws IOException { SqlSessionFactory sqlSessionFactory = getSqlSessionFactory(); return sqlSessionFactory.openSession(); }
(5)mybatis.cfg.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"/> <!-- 数据库连接相关配置 ,这里动态获取config.properties文件中的内容--> <dataSource type="POOLED"> <property name="driver" value="com.mysql.jdbc.Driver" /> <property name="url" value="jdbc:mysql://localhost:3306/nba"/> <property name="username" value="root" /> <property name="password" value="root" /> </dataSource> </environment> </environments> <!-- mapping文件路径配置 --> <mappers> <mapper resource="cn/sxt/entity/player.mapper.xml"/> //此处的路径直接选择Copy Relative Path以免出错,‘/‘连接 </mappers> </configuration>
总体来讲,不算太难,但是跟着视频学的我,也调了一会,创建项目时,选择的是java project而不是maven,不然会引起不必要的错误,maven环境下,我始终没有调通。
以上是关于mybatis入门的主要内容,如果未能解决你的问题,请参考以下文章
markdown [mybatis参考]关于mybatis #mybatis的一些片段