MyBatis入门实例-包括实体类与数据库字段对应&CLOB字段处理
1、我的开发环境是 jdk1.7+ecplise+oracle 11g
用到的jar包:mybatis-3.1.1.jar
ojdbc6.jar
2、项目整体结构
3、首先配置conf.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" />
- <!-- 配置数据库连接信息 -->
- <dataSource type="POOLED">
- <property name="driver" value="oracle.jdbc.driver.OracleDriver" />
- <property name="url" value="jdbc:oracle:thin:@xxx.xxx.xxx.xxx:1521:orcl" />
- <property name="username" value="xxx" />
- <property name="password" value="xxx" />
- </dataSource>
- </environment>
- </environments>
- </configuration>
4、数据库表创建
- -- Create table
- create table DIM_LANE_AREA
- (
- lane_id NUMBER(4) not null,
- lane_name VARCHAR2(100) not null,
- direction CHAR(2) not null,
- facility_list CLOB not null,
- account_list CLOB not null,
- description VARCHAR2(100)
- )
- tablespace USERS
- pctfree 10
- initrans 1
- maxtrans 255
- storage
- (
- initial 64K
- next 1M
- minextents 1
- maxextents unlimited
- );
- -- Add comments to the columns
- comment on column DIM_LANE_AREA.lane_id
- is '单行道编号';
- comment on column DIM_LANE_AREA.lane_name
- is '单行道名称';
- comment on column DIM_LANE_AREA.direction
- is '单行道方向';
- comment on column DIM_LANE_AREA.facility_list
- is '设备列表';
- comment on column DIM_LANE_AREA.account_list
- is '账户列表';
- comment on column DIM_LANE_AREA.description
- is '描述';
- -- Create/Recreate indexes
- create unique index DIM_LANE_AREA_1 on DIM_LANE_AREA (LANE_ID)
- tablespace USERS
- pctfree 10
- initrans 2
- maxtrans 255
- storage
- (
- initial 64K
- next 8K
- minextents 1
- maxextents unlimited
- );
- create index DIM_LANE_AREA_2 on DIM_LANE_AREA (DIRECTION)
- tablespace USERS
- pctfree 10
- initrans 2
- maxtrans 255
- storage
- (
- initial 64K
- next 8K
- minextents 1
- maxextents unlimited
- );
- -- Create/Recreate primary, unique and foreign key constraints
- alter table DIM_LANE_AREA
- add constraint DIM_LANE_AREA primary key (LANE_ID);
5、编写实体类LaneArea.java
- package me.gacl.po;
- /**
- * 单行道配置信息PO
- * @author wqq
- * @time 2016-09-21
- */
- public class LaneArea
- {
- /**
- * 单行道编号
- */
- private Integer laneId;
- /**
- * 单行道名称
- */
- private String laneName;
- /**
- * 单行道方向
- */
- private String direction;
- /**
- * 设备列表<span style="font-family: Arial, Helvetica, sans-serif;">(该字段为CLOB类型,以逗号分隔)</span>
- */
- private String facilityList;
- /**
- * 账户列表(该字段为CLOB类型,以逗号分隔)
- */
- private String accountList;
- /**
- * 描述
- */
- private String description;
- public Integer getLaneId() {
- return laneId;
- }
- public void setLaneId(Integer laneId) {
- this.laneId = laneId;
- }
- public String getLaneName() {
- return laneName;
- }
- public void setLaneName(String laneName) {
- this.laneName = laneName;
- }
- public String getDirection() {
- return direction;
- }
- public void setDirection(String direction) {
- this.direction = direction;
- }
- public String getFacilityList() {
- return facilityList;
- }
- public void setFacilityList(String facilityList) {
- this.facilityList = facilityList;
- }
- public String getAccountList() {
- return accountList;
- }
- public void setAccountList(String accountList) {
- this.accountList = accountList;
- }
- public String getDescription() {
- return description;
- }
- public void setDescription(String description) {
- this.description = description;
- }
- @Override
- public String toString()
- {
- return "LaneArea [lane_id=" + laneId + ", lane_name=" + laneName + ", facility_list=" + facilityList + "]";
- }
- }
6、配置LaneAreaMapper.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="me.gacl.mapping.laneAreaMapper">
- <!-- 在select标签中编写查询的SQL语句, 设置select标签的id属性为getUser,id属性值必须是唯一的,
- 不能够重复 使用parameterType属性指明查询时使用的参数类型,resultType属性指明查询返回的结果集类型
- resultType="me.gacl.po.LaneArea"就表示将查询结果封装成一个LaneArea类的对象返回 LaneArea类
- 就是dim_lane_area表所对应的实体类 -->
- <!-- 根据id查询得到一个LaneArea对象 -->
- <select id="getLaneAreaResultMap" parameterType="int" resultMap="LaneAreaResultMap">
- select * from dim_lane_area where lane_id = #{lane_id}
- </select>
- <!--这里因为实体类的属性与数据库字段不对应,所以要加上resultMap-->
- <resultMap type="me.gacl.po.LaneArea" id="LaneAreaResultMap">
- <id property="laneId" column="lane_id"/>
- <result property="laneName" column="lane_name"/>
- <result property="facilityList" column="facility_list" javaType="String" jdbcType="VARBINARY"/>
- </resultMap>
- </mapper>
7、在conf.xml中注册LaneAreaMapper.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" />
- <!-- 配置数据库连接信息 -->
- <dataSource type="POOLED">
- <property name="driver" value="oracle.jdbc.driver.OracleDriver" />
- <property name="url" value="jdbc:oracle:thin:@192.168.1.40:1521:ETL" />
- <property name="username" value="lane" />
- <property name="password" value="123" />
- </dataSource>
- </environment>
- </environments>
- <mappers>
- <!-- 注册LaneAreaMapper.xml文件,
- LaneAreaMapper.xml位于me.gacl.mapping这个包下,所以resource写成me/gacl/mapping/LaneAreaMapper.xml-->
- <mapper resource="me/gacl/mapping/laneAreaMapper.xml"/>
- </mappers>
- </configuration>
8、编写测试类
- package me.gacl.test;
- import java.io.IOException;
- import java.io.InputStream;
- import me.gacl.po.LaneArea;
- import org.apache.ibatis.session.SqlSession;
- import org.apache.ibatis.session.SqlSessionFactory;
- import org.apache.ibatis.session.SqlSessionFactoryBuilder;
- public class Test1 {
- public static void main(String[] args) throws IOException {
- //mybatis的配置文件
- String resource = "conf.xml";
- //使用类加载器加载mybatis的配置文件(它也加载关联的映射文件)
- InputStream is = Test1.class.getClassLoader().getResourceAsStream(resource);
- //构建sqlSession的工厂
- SqlSessionFactory sessionFactory = new SqlSessionFactoryBuilder().build(is);
- //使用MyBatis提供的Resources类加载mybatis的配置文件(它也加载关联的映射文件)
- //Reader reader = Resources.getResourceAsReader(resource);
- //构建sqlSession的工厂
- //SqlSessionFactory sessionFactory = new SqlSessionFactoryBuilder().build(reader);
- //创建能执行映射文件中sql的sqlSession
- SqlSession session = sessionFactory.openSession();
- /**
- * 映射sql的标识字符串,
- * me.gacl.mapping.userMapper是userMapper.xml文件中mapper标签的namespace属性的值,
- * getUser是select标签的id属性值,通过select标签的id属性值就可以找到要执行的SQL
- */
- String statement = "me.gacl.mapping.laneAreaMapper.getLaneAreaResultMap";//映射sql的标识字符串
- LaneArea laneArea = session.selectOne(statement, 8);
- System.out.println(laneArea);
- }
- }
启动Tomact,运行Test1,返回结果如下:
MyBatis入门实例-包括实体类与数据库字段对应&CLOB字段处理的更多相关文章
- 解决mybatis实体类和数据库列名不匹配的两种办法
我们在实际开发中,会遇到实体类与数据库类不匹配的情况,在开发中就会产生各种各样的错误,那么我们应该怎么去解决这一类的错误呢?很简单,下面我们介绍两种解决方法: 首先我们看一下数据库和实体类不匹配的情况 ...
- ASP.NET实现二维码 ASP.Net上传文件 SQL基础语法 C# 动态创建数据库三(MySQL) Net Core 实现谷歌翻译ApI 免费版 C#发布和调试WebService ajax调用WebService实现数据库操作 C# 实体类转json数据过滤掉字段为null的字段
ASP.NET实现二维码 using System;using System.Collections.Generic;using System.Drawing;using System.Linq;us ...
- Springboot mybatis generate 自动生成实体类和Mapper
https://github.com/JasmineQian/SpringDemo_2019/tree/master/mybatis Springboot让java开发变得方便,Springboot中 ...
- 在Code First中使用Migrations对实体类和数据库做出变更
在Code First中使用Migrations对实体类和数据库做出变更,Mirgration包含一系列命令. 工具--库程序包管理器--程序包管理器控制台 运行命令:Enable-Migration ...
- ef-codefirst方式配置实体类,生成数据库
做项目的时候,如果我们如果用orm方式来做数据库持久化操作的话.微软官方首先会向我们推荐ef,而我们用ado.net的话,似乎也需要建立实体类来接传值,那么我们用codefirst就有一举两得的效果了 ...
- ASP.NET Core EFCore 之DBFirst 自动创建实体类和数据库上下文
通过引用Nuget包添加实体类 运行 Install-Package Microsoft.EntityFrameworkCore.SqlServer 运行 Install-Package Micros ...
- C# 实体类转json数据过滤掉字段为null的字段
C# 实体类转json数据过滤掉字段为null的字段 语法如下: var jsonSetting = new JsonSerializerSettings {NullValueHandling = N ...
- Oracle数据库使用mybatis的时候,实体类日期为Date类型,mybatis里面定义的是Date类型,插入的时候,时分秒全部是12:00:00问题
实体类中日期定义的是Date类型的,没毛病: 我在mybatis里面定义的是Date类型的,进行测试的时候发现,数据库插入的日期的时分秒全部都是一样的,都是12:00:00,很郁闷: 后来把mybat ...
- mybatis中实体类跟数据库属性不一致解决方案
1.在Mapper.xml映射配置文件中给sql语句起别名 select id as uid,username as name from user 2.mybatis中可以单独的配置查询结果的列名和实 ...
随机推荐
- 虚拟机 CentOS7 64
下载地址:https://www.centos.org/download/ 下载完后以后使用虚拟机安装即可
- 洛谷P3088 挤奶牛
传送门啦 这个题也是一个单调队列来优化的 $ dp $ ,我们考虑这个题,这个题让我们求出有多少奶牛会觉得拥挤,如果我们还像琪露诺那个题那样单纯用一次单调队列肯定是不行的,因为牛觉不觉得拥挤是受左右的 ...
- mysql数据库查找类型不匹配
无意中看到10级学长的博客,提到了mysql数据库类型查找不匹配的问题,博客地址是:卢俊达 . 数据库中建表中会对每个属性进行类型划分,然后在查找数据库select时: MySQL 的文档 (Type ...
- 在SQL2008和2012里面怎么让显示全部行和编辑 全部而不是200和1000
在sql server2008里面,可能微软考虑到数据量比较大,如果直接返回所有行,可能造成耗费时间过多.所有默认为"编辑前200行"和"返回前1000行".这 ...
- CVE-2012-1876Microsoft Internet Explorer Col元素远程代码执行漏洞分析
Microsoft Internet Explorer是微软Windows操作系统中默认捆绑的WEB浏览器. Microsoft Internet Explorer 6至9版本中存在漏 ...
- centos7 vnc 无法systemctl启动
1.centos7 vnc 无法systemctl启动 报错如下:Failed to start Remote desktop service (VNC) 2.解决办法 错误服务脚本名 vncserv ...
- Elasticsearch: 权威指南---基础入门
1.查看方式:GETURL:http://10.10.6.225:9200/?pretty pretty 在任意的查询字符串中增加pretty参数.会让Elasticsearch美化输出JSON结果以 ...
- 一步一步学习IdentityServer3 (8)
IdentityServer3结合Hangfire及Cookies中间件实现授权 Idr3数据库Token过期管理 GlobalConfiguration.Configuration.UseSqlSe ...
- Azkaban(二)CentOS7.5安装Azkaban
1.软件介绍 Azkaban Web 服务器:azkaban-web-server-2.5.0.tar.gz Azkaban Excutor 执行服务器:azkaban-executor-server ...
- 【51nod】1655 染色问题
题解 首先每个颜色出现的次数应该是一样的 \(\frac{C_{n}^{2}}{n} = \frac{n - 1}{2}\) 所以n如果是偶数那么就无解了 然后我们需要让每个点连颜色不同的四条边 只要 ...