- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章Java的MyBatis框架中Mapper映射配置的使用及原理解析由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
Mapper的内置方法 model层就是实体类,对应数据库的表。controller层是Servlet,主要是负责业务模块流程的控制,调用service接口的方法,在struts2就是Action。Service层主要做逻辑判断,Dao层是数据访问层,与数据库进行对接。至于Mapper是mybtis框架的映射用到,mapper映射文件在dao层用.
下面是介绍一下Mapper的内置方法:
1、countByExample ===>根据条件查询数量 。
1
2
3
4
5
6
7
|
int
countByExample(UserExample example);
//下面是一个完整的案列
UserExample example =
new
UserExample();
Criteria criteria = example.createCriteria();
criteria.andUsernameEqualTo(
"joe"
);
int
count = userDAO.countByExample(example);
|
相当于:select count(*) from user where username='joe' 2、deleteByExample ===>根据条件删除多条 。
1
2
3
4
5
6
7
8
|
int
deleteByExample(AccountExample example);
//下面是一个完整的案例
UserExample example =
new
UserExample();
Criteria criteria = example.createCriteria();
criteria.andUsernameEqualTo(
"joe"
);
userDAO.deleteByExample(example);
相当于:delete from user where username=
'joe'
|
3、deleteByPrimaryKey===>根据条件删除单条 。
1
2
|
int
deleteByPrimaryKey(Integer id);
userDAO.deleteByPrimaryKey(
101
);
|
相当于:
1
2
|
delete
from
user
where
id=101
|
4、insert===>插入数据 。
1
2
3
4
5
6
7
8
9
|
int
insert(Account record);
//下面是完整的案例
User user =
new
User();
//user.setId(101);
user.setUsername(
"test"
);
user.setPassword(
"123456"
)
user.setEmail(
"674531003@qq.com"
);
userDAO.insert(user);
|
相当于:
1
|
insert
into
user
(ID,username,
password
,email)
values
(101,
'test'
,
'123456'
,
'674531003@qq.com'
);
|
5、insertSelective===>插入数据 。
1
|
int
insertSelective(Account record);
|
6、selectByExample===>根据条件查询数据 。
1
2
3
4
5
6
7
8
9
10
11
12
|
List<Account> selectByExample(AccountExample example);
//下面是一个完整的案例
UserExample example =
new
UserExample();
Criteria criteria = example.createCriteria();
criteria.andUsernameEqualTo(
"joe"
);
criteria.andUsernameIsNull();
example.setOrderByClause(
"username asc,email desc"
);
List<?>list = userDAO.selectByExample(example);
相当于:select * from user where username =
'joe'
and username is
null
order by username asc,email desc
//注:在iBator 生成的文件UserExample.java中包含一个static 的内部类 Criteria ,在Criteria中有很多方法,主要是定义SQL 语句where后的查询条件。
|
7、selectByPrimaryKey===>根据主键查询数据 。
1
|
Account selectByPrimaryKey(Integer id);
//相当于select * from user where id = 变量id
|
8、updateByExampleSelective===>按条件更新值不为null的字段 。
1
2
3
4
5
6
7
8
9
10
|
int
updateByExampleSelective(
@Param
(
"record"
) Account record,
@Param
(
"example"
) AccountExample example);
//下面是一个完整的案列
UserExample example =
new
UserExample();
Criteria criteria = example.createCriteria();
criteria.andUsernameEqualTo(
"joe"
);
User user =
new
User();
user.setPassword(
"123"
);
userDAO.updateByPrimaryKeySelective(user,example);
相当于:update user set password=
'123'
where username=
'joe'
|
9、updateByExampleSelective===>按条件更新 。
1
|
int
updateByExample(
@Param
(
"record"
) Account record,
@Param
(
"example"
) AccountExample example);
|
10、updateByPrimaryKeySelective===>按条件更新 。
1
2
3
4
5
6
7
8
|
int
updateByPrimaryKeySelective(Account record);
//下面是一个完整的案例
User user =
new
User();
user.setId(
101
);
user.setPassword(
"joe"
);
userDAO.updateByPrimaryKeySelective(user);
|
相当于:
1
|
update
user
set
password
=
'joe'
where
id=101
|
1
2
3
4
5
6
7
8
|
int
updateByPrimaryKeySelective(Account record);
//下面是一个完整的案例
User user =
new
User();
user.setId(
101
);
user.setPassword(
"joe"
);
userDAO.updateByPrimaryKeySelective(user);
|
相当于:update user set password='joe' where id=101 。
11、updateByPrimaryKey===>按主键更新 。
1
2
3
4
5
6
7
8
9
|
int
updateByPrimaryKey(Account record);
//下面是一个完整的案例
User user =
new
User();
user.setId(
101
);
user.setUsername(
"joe"
);
user.setPassword(
"joe"
);
user.setEmail(
"joe@163.com"
);
userDAO.updateByPrimaryKey(user);
|
相当于:
1
|
update
user
set
username=
'joe'
,
password
=
'joe'
,email=
'joe@163.com'
where
id=101
|
1
2
3
4
5
6
7
8
9
|
int
updateByPrimaryKey(Account record);
//下面是一个完整的案例
User user =
new
User();
user.setId(
101
);
user.setUsername(
"joe"
);
user.setPassword(
"joe"
);
user.setEmail(
"joe@163.com"
);
userDAO.updateByPrimaryKey(user);
|
相当于:
1
|
update
user
set
username=
'joe'
,
password
=
'joe'
,email=
'joe@163.com'
where
id=101
|
解析mapper的xml配置文件 我们来看看mybatis是怎么读取mapper的xml配置文件并解析其中的sql语句.
我们还记得是这样配置sqlSessionFactory的:
1
2
3
4
5
6
|
<
bean
id
=
"sqlSessionFactory"
class
=
"org.mybatis.spring.SqlSessionFactoryBean"
>
<
property
name
=
"dataSource"
ref
=
"dataSource"
/>
<
property
name
=
"configLocation"
value
=
"classpath:configuration.xml"
></
property
>
<
property
name
=
"mapperLocations"
value
=
"classpath:com/xxx/mybatis/mapper/*.xml"
/>
<
property
name
=
"typeAliasesPackage"
value
=
"com.tiantian.mybatis.model"
/>
</
bean
>
|
这里配置了一个mapperLocations属性,它是一个表达式,sqlSessionFactory会根据这个表达式读取包com.xxx.mybaits.mapper下面的所有xml格式文件,那么具体是怎么根据这个属性来读取配置文件的呢?
答案就在SqlSessionFactoryBean类中的buildSqlSessionFactory方法中:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
if
(!isEmpty(
this
.mapperLocations)) {
for
(Resource mapperLocation :
this
.mapperLocations) {
if
(mapperLocation ==
null
) {
continue
;
}
try
{
XMLMapperBuilder xmlMapperBuilder =
new
XMLMapperBuilder(mapperLocation.getInputStream(),
configuration, mapperLocation.toString(), configuration.getSqlFragments());
xmlMapperBuilder.parse();
}
catch
(Exception e) {
throw
new
NestedIOException(
"Failed to parse mapping resource: '"
+ mapperLocation +
"'"
, e);
}
finally
{
ErrorContext.instance().reset();
}
if
(logger.isDebugEnabled()) {
logger.debug(
"Parsed mapper file: '"
+ mapperLocation +
"'"
);
}
}
}
|
mybatis使用XMLMapperBuilder类的实例来解析mapper配置文件.
1
2
3
4
5
6
7
8
9
10
11
12
|
public
XMLMapperBuilder(Reader reader, Configuration configuration, String resource, Map<String, XNode> sqlFragments) {
this
(
new
XPathParser(reader,
true
, configuration.getVariables(),
new
XMLMapperEntityResolver()),
configuration, resource, sqlFragments);
}
private
XMLMapperBuilder(XPathParser parser, Configuration configuration, String resource, Map<String, XNode> sqlFragments) {
super
(configuration);
this
.builderAssistant =
new
MapperBuilderAssistant(configuration, resource);
this
.parser = parser;
this
.sqlFragments = sqlFragments;
this
.resource = resource;
}
|
接着系统调用xmlMapperBuilder的parse方法解析mapper.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
public
void
parse() {
//如果configuration对象还没加载xml配置文件(避免重复加载,实际上是确认是否解析了mapper节点的属性及内容,
//为解析它的子节点如cache、sql、select、resultMap、parameterMap等做准备),
//则从输入流中解析mapper节点,然后再将resource的状态置为已加载
if
(!configuration.isResourceLoaded(resource)) {
configurationElement(parser.evalNode(
"/mapper"
));
configuration.addLoadedResource(resource);
bindMapperForNamespace();
}
//解析在configurationElement函数中处理resultMap时其extends属性指向的父对象还没被处理的<resultMap>节点
parsePendingResultMaps();
//解析在configurationElement函数中处理cache-ref时其指向的对象不存在的<cache>节点(如果cache-ref先于其指向的cache节点加载就会出现这种情况)
parsePendingChacheRefs();
//同上,如果cache没加载的话处理statement时也会抛出异常
parsePendingStatements();
}
|
mybatis解析mapper的xml文件的过程已经很明显了,接下来我们看看它是怎么解析mapper的:
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
|
private
void
configurationElement(XNode context) {
try
{
//获取mapper节点的namespace属性
String namespace = context.getStringAttribute(
"namespace"
);
if
(namespace.equals(
""
)) {
throw
new
BuilderException(
"Mapper's namespace cannot be empty"
);
}
//设置当前namespace
builderAssistant.setCurrentNamespace(namespace);
//解析mapper的<cache-ref>节点
cacheRefElement(context.evalNode(
"cache-ref"
));
//解析mapper的<cache>节点
cacheElement(context.evalNode(
"cache"
));
//解析mapper的<parameterMap>节点
parameterMapElement(context.evalNodes(
"/mapper/parameterMap"
));
//解析mapper的<resultMap>节点
resultMapElements(context.evalNodes(
"/mapper/resultMap"
));
//解析mapper的<sql>节点
sqlElement(context.evalNodes(
"/mapper/sql"
));
//使用XMLStatementBuilder的对象解析mapper的<select>、<insert>、<update>、<delete>节点,
//mybaits会使用MappedStatement.Builder类build一个MappedStatement对象,
//所以mybaits中一个sql对应一个MappedStatement
buildStatementFromContext(context.evalNodes(
"select|insert|update|delete"
));
}
catch
(Exception e) {
throw
new
BuilderException(
"Error parsing Mapper XML. Cause: "
+ e, e);
}
}
|
configurationElement函数几乎解析了mapper节点下所有子节点,至此mybaits解析了mapper中的所有节点,并将其加入到了Configuration对象中提供给sqlSessionFactory对象随时使用。这里我们需要补充讲一下mybaits是怎么使用XMLStatementBuilder类的对象的parseStatementNode函数借用MapperBuilderAssistant类对象builderAssistant的addMappedStatement解析MappedStatement并将其关联到Configuration类对象的:
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
public
void
parseStatementNode() {
//ID属性
String id = context.getStringAttribute(
"id"
);
//databaseId属性
String databaseId = context.getStringAttribute(
"databaseId"
);
if
(!databaseIdMatchesCurrent(id, databaseId,
this
.requiredDatabaseId)) {
return
;
}
//fetchSize属性
Integer fetchSize = context.getIntAttribute(
"fetchSize"
);
//timeout属性
Integer timeout = context.getIntAttribute(
"timeout"
);
//parameterMap属性
String parameterMap = context.getStringAttribute(
"parameterMap"
);
//parameterType属性
String parameterType = context.getStringAttribute(
"parameterType"
);
Class<?> parameterTypeClass = resolveClass(parameterType);
//resultMap属性
String resultMap = context.getStringAttribute(
"resultMap"
);
//resultType属性
String resultType = context.getStringAttribute(
"resultType"
);
//lang属性
String lang = context.getStringAttribute(
"lang"
);
LanguageDriver langDriver = getLanguageDriver(lang);
Class<?> resultTypeClass = resolveClass(resultType);
//resultSetType属性
String resultSetType = context.getStringAttribute(
"resultSetType"
);
StatementType statementType = StatementType.valueOf(context.getStringAttribute(
"statementType"
, StatementType.PREPARED.toString()));
ResultSetType resultSetTypeEnum = resolveResultSetType(resultSetType);
String nodeName = context.getNode().getNodeName();
SqlCommandType sqlCommandType = SqlCommandType.valueOf(nodeName.toUpperCase(Locale.ENGLISH));
//是否是<select>节点
boolean
isSelect = sqlCommandType == SqlCommandType.SELECT;
//flushCache属性
boolean
flushCache = context.getBooleanAttribute(
"flushCache"
, !isSelect);
//useCache属性
boolean
useCache = context.getBooleanAttribute(
"useCache"
, isSelect);
//resultOrdered属性
boolean
resultOrdered = context.getBooleanAttribute(
"resultOrdered"
,
false
);
// Include Fragments before parsing
XMLIncludeTransformer includeParser =
new
XMLIncludeTransformer(configuration, builderAssistant);
includeParser.applyIncludes(context.getNode());
// Parse selectKey after includes and remove them.
processSelectKeyNodes(id, parameterTypeClass, langDriver);
// Parse the SQL (pre: <selectKey> and <include> were parsed and removed)
SqlSource sqlSource = langDriver.createSqlSource(configuration, context, parameterTypeClass);
//resultSets属性
String resultSets = context.getStringAttribute(
"resultSets"
);
//keyProperty属性
String keyProperty = context.getStringAttribute(
"keyProperty"
);
//keyColumn属性
String keyColumn = context.getStringAttribute(
"keyColumn"
);
KeyGenerator keyGenerator;
String keyStatementId = id + SelectKeyGenerator.SELECT_KEY_SUFFIX;
keyStatementId = builderAssistant.applyCurrentNamespace(keyStatementId,
true
);
if
(configuration.hasKeyGenerator(keyStatementId)) {
keyGenerator = configuration.getKeyGenerator(keyStatementId);
}
else
{
//useGeneratedKeys属性
keyGenerator = context.getBooleanAttribute(
"useGeneratedKeys"
,
configuration.isUseGeneratedKeys() && SqlCommandType.INSERT.equals(sqlCommandType))
?
new
Jdbc3KeyGenerator() :
new
NoKeyGenerator();
}
builderAssistant.addMappedStatement(id, sqlSource, statementType, sqlCommandType,
fetchSize, timeout, parameterMap, parameterTypeClass, resultMap, resultTypeClass,
resultSetTypeEnum, flushCache, useCache, resultOrdered,
keyGenerator, keyProperty, keyColumn, databaseId, langDriver, resultSets);
}
|
由以上代码可以看出mybaits使用XPath解析mapper的配置文件后将其中的resultMap、parameterMap、cache、statement等节点使用关联的builder创建并将得到的对象关联到configuration对象中,而这个configuration对象可以从sqlSession中获取的,这就解释了我们在使用sqlSession对数据库进行操作时mybaits怎么获取到mapper并执行其中的sql语句的问题.
最后此篇关于Java的MyBatis框架中Mapper映射配置的使用及原理解析的文章就讲到这里了,如果你想了解更多关于Java的MyBatis框架中Mapper映射配置的使用及原理解析的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
我需要开发一个简单的网站,我通常使用 bootstrap CSS 框架,但是我想使用 Gumbyn,它允许我使用 16 列而不是 12 列。 我想知道是否: 我可以轻松地改变绿色吗? 如何使用固定布局
这个问题在这里已经有了答案: 关闭 13 年前。 与直接编写 PHP 代码相比,使用 PHP 框架有哪些优点/缺点?
我开发了一个 Spring/JPA 应用程序:服务、存储库和域层即将完成。 唯一缺少的层是网络层。我正在考虑将 Playframework 2.0 用于 Web 层,但我不确定是否可以在我的 Play
我现有的 struts Web 应用程序具有单点登录功能。然后我将使用 spring 框架创建一个不同的 Web 应用程序。然后想要使用从 struts 应用程序登录的用户来链接新的 spring 应
我首先使用Spark框架和ORMLite处理网页上表单提交的数据,在提交中文字符时看到了unicode问题。我首先想到问题可能是由于ORMLite,因为我的MySQL数据库的字符集已设置为使用utf8
我有一个使用 .Net 4.5 功能的模块,我们的应用程序也适用于 XP 用户。所以我正在考虑将这个 .net 4.5 依赖模块移动到单独的项目中。我怎样才能有一个解决方案,其中有两个项目针对不同的版
我知道这是一个非常笼统的问题,但我想我并不是真的在寻找明确的答案。作为 PHP 框架的新手,我很难理解它。 Javascript 框架,尤其是带有 UI 扩展的框架,似乎通过将 JS 代码与设计分开来
我需要收集一些关于现有 ORM 解决方案的信息。 请随意编写任何编程语言。 你能谈谈你用过的最好的 ORM 框架吗?为什么它比其他的更好? 最佳答案 我使用了 NHibernate 和 Entity
除了 Apple 的 SDK 之外,还有什么强大的 iPhone 框架可供开始开发?有没有可以加快开发时间的方法? 最佳答案 此类框架最大的是Three20 。 Facebook 和许多其他公司都使用
有人可以启发我使用 NodeJS 的 Web 框架吗?我最近开始从免费代码营学习express js,虽然一切进展顺利,但我对express到底是什么感到困惑。是全栈框架吗?纯粹是为了后端吗?我发现您
您可以推荐哪种 Ajax 框架/工具包来构建使用 struts 的 Web 应用程序的 GUI? 最佳答案 我会说你的 AJAX/javascript 库选择应该较少取决于你的后端是如何实现的,而更多
我有生成以下错误的 python 代码: objc[36554]: Class TKApplication is implemented in both /Library/Frameworks/Tk.
首先,很抱歉,如果我问的问题很明显,因为我没有编程背景,那我去吧: 我想运行一系列测试场景并在背景部分声明了几个变量(我打印它们以仔细检查它们是否已正确声明),第一个是整数,另外两个字符串为你可以看到
在我们承担的一个项目中,我们正在寻找一个视频捕获和录制库。我们的基础工作(基于 google 搜索)表明 vlc (libvlc)、ffmpeg (libavcodec) 和 gstreamer 是三
我试过没有运气的情况下寻找某种功能来杀死/中断Play中的正常工作!框架。 我想念什么吗?还是玩了!实际没有添加此功能? 最佳答案 Java stop类中没有像Thread方法那样的东西,由于种种原因
我们希望在我们的系统中保留所有重大事件的记录。例如,在数据库可能存储当前用户状态的地方,事件日志应记录对该状态的所有更改以及更改发生的时间。 事件记录工具应该尽可能接近于事件引发器的零开销,应该容纳结
那里有 ActionScript 2.0/3.0 的测试框架列表吗? 最佳答案 2010-05-18 更新 由于这篇文章有点旧,而且我刚刚收到了赞成票,因此可能值得提供一些更新的信息,这样人们就不会追
我有一个巨大的 numpy 数组列表(一维),它们是不同事件的时间序列。每个点都有一个标签,我想根据其标签对 numpy 数组进行窗口化。我的标签是 0、1 和 2。每个窗口都有一个固定的大小 M。
我是 Play 的新手!并编写了我的第一个应用程序。这个应用程序有一组它依赖的 URL,从 XML 响应中提取数据并返回有效的 URL。 此应用程序需要在不同的环境(Dev、Staging 和 Pro
关闭。这个问题不满足Stack Overflow guidelines .它目前不接受答案。 想改善这个问题吗?更新问题,使其成为 on-topic对于堆栈溢出。 4年前关闭。 Improve thi
我是一名优秀的程序员,十分优秀!