- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章mybatis学习笔记之mybatis注解配置详解由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
Java API 。
既然你已经知道如何配置 MyBatis 和创建映射文件,你就已经准备好来提升技能了。 MyBatis 的 Java API 就是你收获你所做的努力的地方。正如你即将看到的,和 JDBC 相比, MyBatis 很大程度简化了你的代码而且保持简洁,很容易理解和维护。MyBatis 3 已经引入 了很多重要的改进来使得 SQL 映射更加优秀.
MyBatis 3构建在基于全面且强大的Java配置API上。该配置API是基于XML的MyBatis配置的基础,也是新的基于注解配置的基础.
注解提供了一种简单的方式来实现简单映射语句,而不会引入大量的开销.
Mybatis常用注解对应的目标和标签如表所示
。
注解 | 目标 | 对应的XML标签 |
@CacheNamespace | 类 | <cache> |
@CacheNamespaceRef | 类 | <cacheRef> |
@Results | 方法 | <resultMap> |
@Result | 方法 | <result> 。 <id> |
@One | 方法 | <association> |
@Many | 方法 | <collection> |
@Insert 。 @Update 。 @Delete |
方法 | <insert> 。 <update> 。 <delete> |
@InsertProvider 。 @UpdateProvider 。 @DeleteProvider 。 @SelectProvider |
方法 | <insert> 。 <update> 。 <delete> 。 <select> 。 允许创建动态SQL |
@Param | 参数 | N/A |
@Options | 方法 | 映射语句的属性 |
@select | 方法 | <select> |
。
Mybatis常用注解的含义:
@CacheNamespace(size = 512):定义在该命名空间内允许使用内置缓存 。
@Options(useCache = true, flushCache = false, timeout = 10000):一些查询的选项开关 。
@Param("id"):全局限定别名,定义查询参数在sql语句中的位置不再是顺序下标0,1,2,3......的形式,而是对应名称,该名称在此处定义。 。
@Results是以@Result为元素的数组,@Result表示单条属性——字段的映射关系,id = true表示该id字段是主键,查询时mybatis会给予必要的优化。数组中所有的@Result组成了单个记录的映射关系,而@Results则是单个记录的集合。另外,还有一个非常重要的注解@ResultMap,其与@Results类似 。
@Select("查询语句")、@Insert("增加语句")、@Update("更新语句")和@Delete("删除语句")表示对数据进行查询、添加、更新和删除的操作.
接下来,咱们来看一下注解的使用.
(1) 常规注解使用(不需要自定义map的操作)
示例1 。
1
2
3
4
5
6
7
8
9
|
//添加作者
@Insert
(
"Insertinto Author(username,password,email,address,phone) "
+
"values(#{username},#{password},#{email},#{address},#{phone})"
)
@Options
(useGeneratedKeys=
true
,keyProperty=
"authId"
,flushCache=
false
, timeout =
10000
)
public
voidaddAuthor(Author author);
//删除作者
@Delete
(
"deletefrom author where id = #{id}"
)
@Options
(flushCache=
false
, timeout =
10000
)
public
voiddeleteAuthor(
@Param
(
"id"
)
int
id);
|
提示: 调用方法前需要注册映射器
1
|
sessionFactory.getConfiguration().addMapper(TestInteger.
class
);
|
或者在mapper.xml中配置<mapper class="映射器接口路径"></mapper> 。
注册之后再获取mapper接口正常调用 。
(2)有需要自定义map的情况可以使用Results注解
示例2 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
//查询所有作者信息
@Select
(
"select * from author"
)
@Options
(flushCache =
false
, timeout =
10000
,useCache=
true
)
@Results
(
value = {
@Result
(id=
true
,column=
"id"
,property=
"id"
),
@Result
(property=
"username"
,column=
"username"
),
@Result
(property=
"password"
,column=
"password"
),
@Result
(property=
"email"
,column=
"email"
),
@Result
(property=
"address"
,column=
"address"
),
@Result
(property=
"phone"
,column=
"phone"
)
}
)
public
List<Author> findAuthors();
//查询某作者信息
@Select
(
"select * from author where id =#{id}"
)
@Options
(flushCache =
false
, timeout =
10000
,useCache=
true
)
@Results
(
value = {
@Result
(id=
true
,column=
"id"
,property=
"id"
),
@Result
(property=
"username"
,column=
"username"
),
@Result
(property=
"password"
,column=
"password"
),
@Result
(property=
"email"
,column=
"email"
),
@Result
(property=
"address"
,column=
"address"
),
@Result
(property=
"phone"
,column=
"phone"
)
}
)
public
Author findAuthorById(
@Param
(
"id"
) intid);
|
如果多个查询返回的结果集结构都一样,可以使用@ResultMap定义返回结构,使用该注解,你将不得不在你的映射文件中配置你的resultMap,而@ResultMap(value = "名")即为映射文件中的resultMap ID,如此一来,你需要在<mapper>中注册你的配置文件,在接口中使用@ResultMap来引用配置文件中的resultMap ID如下
示例3 。
SelfMapper.xml 。
1
2
3
4
5
|
//每行记录是一个hashmap
<
resultMaptype
=
"java.util.HashMap"
id
=
"selfMap"
>
<
resultproperty
=
"n"
column
=
"city_name"
/>
...............
</
resultMap
>
|
SelfMapper.java:
1
2
3
|
@Select
(
"select a.id,b.name,c.state from..........."
)
@ResultMap
(value=
"selfMap"
)
public
List<HashMap> sel();
//注意,返回的是List集合
|
完整案例 。
接口代码 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
package
com.obtk.dao;
import
java.util.HashMap;
import
java.util.List;
import
org.apache.ibatis.annotations.Insert;
import
org.apache.ibatis.annotations.Options;
import
org.apache.ibatis.annotations.Result;
import
org.apache.ibatis.annotations.Results;
import
org.apache.ibatis.annotations.Select;
import
com.obtk.entitys.StudentEntity;
public
interface
IStudentDao {
@Insert
(
"insert into Student(stuName,gender,age,address,deptIdd)"
+
"values(#{stuName},#{gender},#{age},#{address},#{deptIdd})"
)
@Options
(useGeneratedKeys=
true
,keyProperty=
"stuId"
)
int
saveOne(StudentEntity stu);
@Select
(
"select * from Student where stuId=#{stuId}"
)
@Results
(
//只要配置和列名不一致的属性
value={
@Result
(column=
"gender"
,property=
"sex"
)
}
)
StudentEntity queryById(Integer stuId);
@Select
(
"select * from Student where gender=#{qqq} and address=#{area}"
)
@Results
(
//只要配置和列名不一致的属性
value={
@Result
(column=
"gender"
,property=
"sex"
)
}
)
List<StudentEntity> queryByMany(HashMap theMap);
//万能关联注解配置
@Select
(
"select * from student s inner join department d"
+
" on s.deptIdd=d.deptId"
+
" where s.gender=#{sex}"
+
" and d.departName=#{deptName}"
)
List<HashMap> queryByQnn(HashMap theMap);
}
|
案例1 查询一个对象 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
package
com.obtk.test;
import
org.apache.ibatis.session.SqlSession;
import
org.apache.ibatis.session.SqlSessionFactory;
import
com.obtk.dao.IStudentDao;
import
com.obtk.entitys.StudentEntity;
import
com.obtk.utils.MybatisUtil;
public
class
AnnoSelectOne {
public
static
void
main(String[] args) {
SqlSession session=
null
;
SqlSessionFactory factory=
null
;
try
{
session=MybatisUtil.getSession();
factory=MybatisUtil.getFactory();
//把接口里面的sql配置和核心配置文件进行关联
factory.getConfiguration().addMapper(IStudentDao.
class
);
IStudentDao stuDao=session.getMapper(IStudentDao.
class
);
StudentEntity stu=stuDao.queryById(
129
);
System.out.println(stu.getStuName()+
","
+stu.getSex()
+
","
+stu.getAddress()+
","
+stu.getStuId());
}
catch
(Exception e) {
e.printStackTrace();
}
finally
{
MybatisUtil.closeSession();
}
}
}
|
案例2 传递多个参数,查询多个对象 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
package
com.obtk.test;
import
java.util.HashMap;
import
java.util.List;
import
java.util.Map;
import
org.apache.ibatis.session.SqlSession;
import
org.apache.ibatis.session.SqlSessionFactory;
import
com.obtk.dao.IStudentDao;
import
com.obtk.entitys.StudentEntity;
import
com.obtk.utils.MybatisUtil;
public
class
AnnoSelectMany {
public
static
void
main(String[] args) {
SqlSession session=
null
;
SqlSessionFactory factory=
null
;
try
{
session=MybatisUtil.getSession();
factory=MybatisUtil.getFactory();
//把接口里面的sql配置和核心配置文件进行关联
factory.getConfiguration().addMapper(IStudentDao.
class
);
IStudentDao stuDao=session.getMapper(IStudentDao.
class
);
HashMap paramMap=
new
HashMap();
paramMap.put(
"qqq"
,
"男"
);
paramMap.put(
"area"
,
"学生宿舍"
);
List<StudentEntity> stuList=stuDao.queryByMany(paramMap);
for
(StudentEntity stu :stuList){
System.out.println(stu.getStuName()+
","
+stu.getSex()
+
","
+stu.getAddress()+
","
+stu.getStuId());
}
}
catch
(Exception e) {
e.printStackTrace();
}
finally
{
MybatisUtil.closeSession();
}
}
}
|
案例3 添加对象 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
package
com.obtk.test;
import
org.apache.ibatis.session.SqlSession;
import
org.apache.ibatis.session.SqlSessionFactory;
import
com.obtk.dao.IStudentDao;
import
com.obtk.entitys.StudentEntity;
import
com.obtk.utils.MybatisUtil;
public
class
AnnoSaveTest {
public
static
void
main(String[] args) {
SqlSession session=
null
;
SqlSessionFactory factory=
null
;
try
{
session=MybatisUtil.getSession();
factory=MybatisUtil.getFactory();
//把接口里面的sql配置和核心配置文件进行关联
factory.getConfiguration().addMapper(IStudentDao.
class
);
IStudentDao stuDao=session.getMapper(IStudentDao.
class
);
StudentEntity stu=
new
StudentEntity(
"testC#"
,
"男"
,
21
,
"冥王星"
);
stu.setDeptIdd(
10
);
int
result=stuDao.saveOne(stu);
session.commit();
System.out.println(
"保存成功:"
+stu.getStuId());
}
catch
(Exception e) {
e.printStackTrace();
}
finally
{
MybatisUtil.closeSession();
}
}
}
|
案例4 利用hashmap进行关联查询 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
package
com.obtk.test;
import
java.util.HashMap;
import
java.util.List;
import
java.util.Map;
import
org.apache.ibatis.session.SqlSession;
import
org.apache.ibatis.session.SqlSessionFactory;
import
com.obtk.dao.IStudentDao;
import
com.obtk.entitys.StudentEntity;
import
com.obtk.utils.MybatisUtil;
public
class
AnnoJoinQnn {
public
static
void
main(String[] args) {
SqlSession session=
null
;
SqlSessionFactory factory=
null
;
try
{
//4.得到session
session=MybatisUtil.getSession();
factory=MybatisUtil.getFactory();
//把接口里面的sql配置和核心配置文件进行关联
factory.getConfiguration().addMapper(IStudentDao.
class
);
IStudentDao stuDao=session.getMapper(IStudentDao.
class
);
HashMap paramMap=
new
HashMap();
paramMap.put(
"sex"
,
"男"
);
paramMap.put(
"deptName"
,
"计算机系"
);
//5.执行语句
List<HashMap> stuList=stuDao.queryByQnn(paramMap);
for
(HashMap theObj : stuList){
System.out.println(theObj.get(
"stuId"
)+
","
+theObj.get(
"gender"
)
+
","
+theObj.get(
"stuName"
)+
","
+theObj.get(
"departName"
));
}
}
catch
(Exception e) {
e.printStackTrace();
}
finally
{
MybatisUtil.closeSession();
}
}
}
|
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我.
原文链接:http://blog.csdn.net/wx5040257/article/details/78768467 。
最后此篇关于mybatis学习笔记之mybatis注解配置详解的文章就讲到这里了,如果你想了解更多关于mybatis学习笔记之mybatis注解配置详解的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
注解@CrossOrigin 出于安全原因,浏览器禁止Ajax调用驻留在当前原点之外的资源。例如,当你在一个标签中检查你的银行账户时,你可以在另一个选项卡上拥有EVILL网站。来自EVILL的脚本
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界. 这篇CFSDN的博客文章深入理解Java高级特性——注解由作者收集整理,如果你对这篇文章有兴趣,
概述 在这个快速教程中,我们将探索 Spring 的 @RequestParam 注解。 简单地说,我们可以使用 @RequestParam 从请求中提取查询参数、表单参数甚至文件。我们将讨论如何使用
我有一个关于 Spring @Async 注释的问题。我有一个 Controller 自动连接了一个服务(GnInsuranceDetailsService) @RequestMapping(va
我在使用注释来调用注释所属的方法时遇到了一些麻烦......我将举一个例子: class MyEventHandlers { @handler(id=“1”) public doSom
我是.Net程序员,但是这次我正在从事Java项目,并且遇到了一些困难。这个 java 项目不是我的,它是由其他开发人员开发的,并且使用 Hibernate。 当我运行 Ant 构建器时,我收到此错误
我在 Grails 文档(第 9 章:测试)中读到过这个注解。但是我不明白这是什么... 问题是我需要模拟 GORM 的动态方法,有一种方法可以自动模拟它们,而不必编写我需要的所有方法吗? 最佳答案
这个问题在这里已经有了答案: How to get annotation class name, attribute values using reflection (2 个答案) 关闭 5 年前。
如何了解 Java EE 6 JMS 注释规范支持的所有有效属性集@ActivationConfigProperty Java EE 6 Documentation for @ActivationCo
我认为这是不可能的,但也许我错了。所以我问你,如果可能的话。 ;-) 如果我定义了一个注释,它只接受类引用,它扩展了一些可能的接口(interface)或类: Class serviceIFProv
我正在尝试使用 javax.validation 验证一些 DTO,但似乎注释 @NotEmpty 没有检查参数是否为 null。 这是我的类(class): Person.class public
我是 hibernate 新手,我正在尝试学习它,但在尝试使一对多关系正常工作时遇到了问题。我尝试了几个例子,但似乎没有一个起作用。 有人可以看一下下面的代码并告诉我哪里出了问题吗?我尝试了很多不同的
这个问题已经有答案了: Why doesn't Java offer operator overloading? (17 个回答) 已关闭 9 年前。 每个人都知道 Java 中的简单算术如何用于基元
有人知道如何用 Python 处理这种 XML 注释,这是我第一次看到。 <?link id="752760" resource-uuid="UUID-9f0575a3-1847-1cde-fd
我遇到了这个link这解释了如何继承 bean。假设此示例中的 HelloWorld 类使用 @Component 注释作为 bean 公开,如何创建另一个继承此 bean 的 bean?我可以使用
谁能告诉我这段代码是否: public class OvTester { @Override public int hashCode() { return toStri
我有一个实体,它有一个非键列,我已将其设置为在我的数据库中自动生成。 我不能使用 @GeneratedValue,因为据我所知,它仅适用于关键字段。 在这种情况下,如何指示非键列是自动生成的? 最佳答
所以可能像很多人一样,我通常会临时注释掉代码,主要是为了调试目的。我目前放了类似 **DEBUG** 或任何容易搜索的内容,但我认为让编译器在发现临时注释掉的代码时输出警告(甚至错误)可能很有用。我想
此组件解决的问题是: 「谁」在「什么时间」对「什么」做了「什么事」 本组件目前针对 Spring-boot 做了 Autoconfig,如果是 SpringMVC,也可自己在 xml 初始化 b
配置全局乱码过滤器 参数绑定注解@RequestParam 注解@RequestParam的参数使用说明 获得Restful风格的参数 自定义类型转换器 自定义转换器的开发步骤: 获得Servlet相
我是一名优秀的程序员,十分优秀!