- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章Mybatis多表关联查询的实现(DEMO)由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
概要 。
本节要实现的是多表关联查询的简单demo。场景是根据id查询某商品分类信息,并展示该分类下的商品列表.
1、Mysql测试数据 。
新建表Category(商品分类)和Product(商品),并插入几条测试数据.
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
|
create table Category (
Id
int
not
null
auto_increment,
Name varchar(
80
)
null
,
constraint pk_category primary key (Id)
);
INSERT INTO category(Name) VALUES (
'女装'
);
INSERT INTO category(Name) VALUES (
'美妆'
);
INSERT INTO category(Name) VALUES (
'书籍'
);
create table product (
Id
int
not
null
auto_increment,
categoryId
int
not
null
,
Name varchar(
80
)
null
,
constraint pk_product primary key (Id),
constraint fk_product_2 foreign key (categoryId)
references category (Id)
);
create index productCat on product (categoryId);
create index productName on product (Name);
INSERT INTO product(CategoryId,Name) VALUES (
1
,
'裂帛'
);
INSERT INTO product(CategoryId,Name) VALUES (
1
,
'雅鹿'
);
INSERT INTO product(CategoryId,Name) VALUES (
2
,
'膜法世家'
);
INSERT INTO product(CategoryId,Name) VALUES (
2
,
'御泥坊'
);
INSERT INTO product(CategoryId,Name) VALUES (
2
,
'雅诗兰黛'
);
INSERT INTO product(CategoryId,Name) VALUES (
2
,
'欧莱雅'
);
INSERT INTO product(CategoryId,Name) VALUES (
2
,
'韩后'
);
INSERT INTO product(CategoryId,Name) VALUES (
2
,
'相宜本草'
);
INSERT INTO product(CategoryId,Name) VALUES (
3
,
'疯狂JAVA'
);
INSERT INTO product(CategoryId,Name) VALUES (
3
,
'JAVA核心技术'
);
|
2、配置mybatis-generator-config.xml 。
配置mybatis-generator-config.xml的方法见 JAVA入门[7]-Mybatis generator(MBG)自动生成mybatis代码 ,这里主要改动的是table节点.
1
2
3
4
5
6
|
<table tableName=
"category"
enableCountByExample=
"true"
enableDeleteByExample=
"true"
enableSelectByExample=
"true"
enableUpdateByExample=
"true"
>
<generatedKey column=
"Id"
sqlStatement=
"mysql"
identity=
"true"
/>
</table>
<table tableName=
"product"
enableCountByExample=
"true"
enableSelectByExample=
"true"
enableSelectByPrimaryKey=
"true"
enableUpdateByPrimaryKey=
"true"
enableDeleteByPrimaryKey=
"true"
enableInsert=
"true"
>
<generatedKey column=
"Id"
sqlStatement=
"mysql"
identity=
"true"
></generatedKey>
</table>
|
配置好xml文件后,在Maven面板运行mybatis-generator:generate,自动生成相关的类.
3、自定义mybatis关联查询 。
1.封装实体dto 。
我们新定义CategoryDto,封装商品分类信息及其商品列表.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
public
class
CategoryDto {
private
Category category;
private
List<Product> products;
private
int
id;
public
int
getId() {
return
id;
}
public
void
setId(
int
id) {
this
.id = id;
}
public
Category getCategory() {
return
category;
}
public
void
setCategory(Category category) {
this
.category = category;
}
public
List<Product> getProducts() {
return
products;
}
public
void
setProducts(List<Product> products) {
this
.products = products;
}
}
|
2.为CategoryMapper.java接口新增方法getById() 。
CategoryDto getById(int id),
3.配置CategoryMapper.xml 。
首先定义select节点,id对应上面的方法名getById;parameterType参数类型为Integer;resultMap为自定义resultMap的id.
1
2
3
4
5
|
<select id=
"getById"
parameterType=
"java.lang.Integer"
resultMap=
"CategoryResult"
>
SELECT Category.Id AS CateId,Category.Name AS CateName,Product.Id AS ProductId,Product.Name AS ProductName
FROM Category,Product
WHERE Category.Id=Product.CategoryId AND Category.Id=#{id}
</select>
|
接下来定义resultMap节点id为CategoryResult,type为CategoryDto.
关于resultMap:
完整参考官网:http://www.mybatis.org/mybatis-3/zh/sqlmap-xml.html#Result_Maps 。
用association对应category,collection对应products,然后用result对应到每个具体字段.
1
2
3
4
5
6
7
8
9
10
|
<resultMap id=
"CategoryResult"
type=
"com.data.dto.CategoryDto"
>
<association property=
"category"
javaType=
"com.data.pojo.Category"
>
<result property=
"id"
column=
"CateId"
></result>
<result property=
"name"
column=
"CateName"
></result>
</association>
<collection property=
"products"
ofType=
"com.data.pojo.Product"
>
<result property=
"id"
column=
"ProductId"
></result>
<result property=
"name"
column=
"ProductName"
></result>
</collection>
</resultMap>
|
4、测试 。
在上一节测试基础上新增测试方法:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
@Test
public
void
test_getById(){
int
id=
2
;
CategoryDto dto= categoryMapper.getById(id);
if
(dto==
null
){
System.out.println(
"不存在"
);
}
else
{
System.out.println(
"商品id="
+dto.getId()+
" name="
+dto.getCategory().getName());
System.out.println(
"Products:"
+dto.getProducts().size());
for
(Product product:dto.getProducts()){
System.out.println(
" |_"
+product.getName());
}
}
}
|
运行之后居然报错了 。
org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.exceptions.TooManyResultsException: Expected one result (or null) to be returned by selectOne(), but found: 6 。
后来找到了解决方案,修改resultMap,添加id节点就可以了.
1
2
3
4
|
<resultMap id=
"CategoryResult"
type=
"com.data.dto.CategoryDto"
>
<id property=
"id"
column=
"CateId"
></id>
……
</resultMap>
|
运行结果:
商品id=2 name=美妆 。
Products:6 。
|_膜法世家 。
|_御泥坊 。
|_雅诗兰黛 。
|_欧莱雅 。
|_韩后 。
|_相宜本草 。
原文链接:http://www.cnblogs.com/janes/archive/2017/02/24/6437351.html 。
最后此篇关于Mybatis多表关联查询的实现(DEMO)的文章就讲到这里了,如果你想了解更多关于Mybatis多表关联查询的实现(DEMO)的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
最近几天,我们考虑使用 Solr 作为我们的首选搜索引擎。 我们需要的大多数功能都是开箱即用的,或者可以轻松配置。 然而,我们绝对需要的一项功能似乎在 Solr 中被很好地隐藏(或缺失)了。 我会试着
我是 Sequelize 的新手,并且一直在探索关联。我正在使用 mysql 5.6 并 Sequelize ^4.42.0。我正在尝试创建两个简单的表:PRJS 和 TASKS 并将一些数据插入这些
关联、聚合和组合之间有什么区别?请从实现的角度解释一下。 最佳答案 对于两个对象,Foo 和 Bar 可以定义关系 关联 - 我与一个对象有关系。 Foo 使用 Bar public class Fo
这两种 hasOne 语法有什么区别? class Project { ....... ............ static hasOne = Employee // static h
对于当前的项目,我想使用遗传算法 - 目前我查看了 jenetics 库。 如何强制某些基因相互依赖?我想将 CSS 映射到基因上,例如我有基因指示是否显示图像,以及如果它也是各自的高度和宽度。因此,
关联、聚合和组合之间有什么区别?请从实现的角度解释一下。 最佳答案 对于两个对象,Foo 和 Bar 可以定义关系 关联 - 我与一个对象有关系。 Foo 使用 Bar public class Fo
假设我有一个名为“学生”的表格,其中包含姓名、手机、电子邮件、首选类(class)、首选学校、性别、年龄、地址、资格、职称、家庭电话、工作电话等列 我想从 Students 表中选择数据并插入到 2
问题标题有点困惑。我有一级员工和一级项目。一名或多名员工正在从事一个或多个项目。在这个关联中,我只有一个从具有*多重性的员工类到具有*多重性的项目类的链接。现在有另一种实现。每个项目只有一名经理,属于
到目前为止,我有一个程序采用一组随机点、站点,并围绕这些点形成适当的 Voronoi 图,表示为角和边的图形。它还为我提供了 Delaunay 三角剖分作为另一个以所有站点为节点的图形(尽管我不知道这
实现IComMethodEvents时你得到三个事件。 OnMethodCall OnMethodException OnMethodReturn 我的目标是记录 COM+ 组件中每个方法的调用时间。
我正在处理这个问题。我正在创造数学问题,每一个都有回应。例如。 如果我的问题是关于“5x + 15 = 2 的结果?”,我将只等待一个答案(整数)。 如果我的问题是关于“给我这个形状的面积和许可”,我
我正在寻找一种数据结构来保存唯一元素的无序集合,它将支持以下操作 在集合中任意位置插入/删除元素 查询元素是否存在 访问一个随机元素 天真地,1 和 2 建议使用关联容器,例如unordered_se
是否可以在 LINQ 中使用类似 ContactAddress.Contact 的内容,而无需在 SQL Server 中在这两者之间创建外键关系(通过 Contact.Id ContactAddr
我一直在谷歌搜索,但不明白调用 javax.persistence.criteria.Subquery 和 Criteria API 的方法相关的结果是什么。 http://www.objectdb.
我正在关注 Chris McCord 的“Programming Phoenix”一书,在第 6 章中,在 User 之间创建了一个关系。和一个 Video . 尝试使用 mix phoenix.se
我在 XAML 中有一个 ItemsControl,我在其中为每个组显示一个扩展器,以便我可以展开/折叠该组。我想保持 IsExpanded 的状态属性(以及可能与组标题显示相关的其他设置)。通常你只
Oracle 11 中是否有内置方法来检查 varchar2 字段中值的相关性?例如,给定一个简单的表,如下所示: MEAL_NUM INGREDIENT --------------------
是否可以在没有 JPA 在数据库中创建外键的情况下设置多对一关联? 这些表归另一个系统所有,并以异步方式填充。因此我们不能在数据库中使用 FK。仍然,几乎总是,最终是一种关系。 @ManyToOne(
我一直在使用NHibernate,使用Fluent NHibernate进行映射。我解决了很多问题,并开始认为自己在nhibernate中经验丰富。 但是,此错误非常奇怪。 这是我的模型: p
我正在开发一个 Typescript Sequelize 项目,其中我的 /models/index.ts 文件具有以下“导入此目录中的所有模型”功能: var basename = path.bas
我是一名优秀的程序员,十分优秀!