day70
Mybatis
mybatis实现多表的关联
关于数据库的设计
当前有五张表,用户表,订单表,订单详情表,商品表,商品类型表
订单表
Orders 订单表 oid varchar(32) 主键 订单编号 uid int 用户编号 paytype varchar(20) 非空(cash,alipay,wei) price double 订单总价 mysql> select * from orders; +----------------------------------+------+---------+-------+ | oid | uid | paytype | price | +----------------------------------+------+---------+-------+ | 7e4485f8285311efabcee0be038b244f | 1 | cash | 29999 | | 7e44b160285311efabcee0be038b244f | 1 | alipay | 19999 | | 7e44e44c285311efabcee0be038b244f | 2 | cash | 11.99 | | 7e6b5ae4285311efabcee0be038b244f | 3 | wei | 299.9 | +----------------------------------+------+---------+-------+ 4 rows in set (0.00 sec)用户表
Users 用户表 uid int 主键自增 用户编号 username varchar(20) 非空唯一 用户名 password varchar(20) 非空 用户密码 age int 年龄 phone varchar(11) 电话 addr varchar(30) 地址 sex varchar(4) 性别 create table users(uid int primary key auto_increment,username varchar(20) not null unique,password varchar(20) not null,phone varchar(11),age int,addr varchar(50),sex varchar(4) ); insert into users values(null, 'liwei', '123456', '119', 20, 'xianyangzhiye', 'boy'); insert into users values(null, 'hejiahao', '123456', '110', 20, 'xianshi', 'boy'); insert into users values(null, 'chenxiaoling', '123456', '119', 20, 'xian', 'girl');订单详情
OrderDetail 订单详情表 did varchar(32) 主键 cid int 非空唯一 商品编号 count int 非空 商品数量 oid varchar(32) 订单编号 create table orderdetail(did varchar(32) primary key,pid int,count int,oid varchar(32) ); insert into orderdetail values(replace(uuid(), '-', ''), 1, 3, '7e4485f8285311efabcee0be038b244f'); insert into orderdetail values(replace(uuid(), '-', ''), 2, 4, '7e4485f8285311efabcee0be038b244f'); insert into orderdetail values(replace(uuid(), '-', ''), 6, 3, '7e44b160285311efabcee0be038b244f'); insert into orderdetail values(replace(uuid(), '-', ''), 7, 2, '7e44b160285311efabcee0be038b244f'); insert into orderdetail values(replace(uuid(), '-', ''), 11, 30, '7e44e44c285311efabcee0be038b244f'); insert into orderdetail values(replace(uuid(), '-', ''), 12, 1, '7e6b5ae4285311efabcee0be038b244f'); 商品表
mysql> select * from products; +-----+-----------------+-----------------+----------+----------------------+-------------------------------------------------------------------+--------+--------+------+ | cid | title | subtitle | wtype | img | cdesc | oprice | nprice | tid | +-----+-----------------+-----------------+----------+----------------------+-------------------------------------------------------------------+--------+--------+------+ | 1 | 小米10 | 小米10青春版 | 小米 | img/cellphone/1.png | 小米10青春版 | 5999 | 4999 | 1 | | 2 | Xiaomi 14 Ultra | Xiaomi 14 Ultra | 小米自营 | img/cellphone/2.png | 徕卡光学 Summilux 镜头,第三代骁龙?8移动平台 | 5999 | 4999 | 1 | | 3 | 小米10 Pro | 小米10 Pro | 小米自营 | img/cellphone/3.png | 【直播间购机加赠多彩腕带保护壳】性能旋风,席卷而来 | 5999 | 4999 | 1 | | 4 | 小米10 Pro | 小米10 Pro | 小米自营 | img/cellphone/4.png | 骁龙845处理器,AI变焦双摄,红外人脸解锁,AI变焦双摄,红外人脸解锁 | 5999 | 4999 | 1 | | 5 | 小米10 Pro | 小米10 Pro | 小米自营 | img/cellphone/5.png | 骁龙845处理器,AI变焦双摄,红外人脸解锁,AI变焦双摄,红外人脸解锁 | 5999 | 4999 | 1 | | 6 | 小米10 Pro | 小米10 Pro | 小米自营 | img/cellphone/6.png | 骁龙845处理器,AI变焦双摄,红外人脸解锁,AI变焦双摄,红外人脸解锁 | 5999 | 4999 | 1 | | 7 | 小米10 Pro | 小米10 Pro | 小米自营 | img/cellphone/7.png | 骁龙845处理器,AI变焦双摄,红外人脸解锁,AI变焦双摄,红外人脸解锁 | 5999 | 4999 | 1 | | 8 | 小米10 Pro | 小米10 Pro | 小米自营 | img/cellphone/8.png | 骁龙845处理器,AI变焦双摄,红外人脸解锁,AI变焦双摄,红外人脸解锁 | 5999 | 4999 | 1 | | 9 | 小米10 Pro | 小米10 Pro | 小米自营 | img/cellphone/9.png | 骁龙845处理器,AI变焦双摄,红外人脸解锁,AI变焦双摄,红外人脸解锁 | 5999 | 4999 | 1 | | 10 | 小米10 Pro | 小米10 Pro | 小米自营 | img/cellphone/10.png | 骁龙845处理器,AI变焦双摄,红外人脸解锁,AI变焦双摄,红外人脸解锁 | 5999 | 4999 | 1 | | 11 | maojin | maojin | jingdong | img/maojin.png | maojin miaoshu | 39.99 | 9.9 | 2 | | 12 | yashua | yashua | taobao | img/yashua.png | yashua miaoshu | 19.99 | 11.9 | 2 | +-----+-----------------+-----------------+----------+----------------------+-------------------------------------------------------------------+--------+--------+------+ 12 rows in set (0.00 sec)商品类型表
create table types(tid int primary key auto_increment,tname varchar(20) not null unique,tdesc varchar(20) ); mysql> select * from types; +-----+------------+----------------+ | tid | tname | tdesc | +-----+------------+----------------+ | 1 | 手机 | 手机描述 | | 2 | 智能穿戴 | 智能穿戴描述 | | 3 | 笔记本平板 | 笔记本平板描述 | | 4 | 家电 | 家电描述 | | 5 | 生活用品 | 生活电器描述 | | 6 | 厨房电器 | 厨房电器描述 | | 7 | 智能家具 | 智能家具描述 | +-----+------------+----------------+ 7 rows in set (0.00 sec)五张表:
mysql> select * from orders; +----------------------------------+------+---------+-------+ | oid | uid | paytype | price | +----------------------------------+------+---------+-------+ | 7e4485f8285311efabcee0be038b244f | 1 | cash | 29999 | | 7e44b160285311efabcee0be038b244f | 1 | alipay | 19999 | | 7e44e44c285311efabcee0be038b244f | 2 | cash | 11.99 | | 7e6b5ae4285311efabcee0be038b244f | 3 | wei | 299.9 | +----------------------------------+------+---------+-------+ 4 rows in set (0.00 sec) mysql> select * from users; +-----+--------------+----------+-------+------+---------------+------+ | uid | username | password | phone | age | addr | sex | +-----+--------------+----------+-------+------+---------------+------+ | 1 | liwei | 123456 | 119 | 20 | xianyangzhiye | boy | | 2 | hejiahao | 123456 | 110 | 20 | xianshi | boy | | 3 | chenxiaoling | 123456 | 119 | 20 | xian | girl | +-----+--------------+----------+-------+------+---------------+------+ 3 rows in set (0.00 sec) mysql> select * from orderdetail; +----------------------------------+------+-------+----------------------------------+ | did | pid | count | oid | +----------------------------------+------+-------+----------------------------------+ | 21ac58702ddb11ef908ee0be038b244f | 1 | 3 | 7e4485f8285311efabcee0be038b244f | | 21ad0cc52ddb11ef908ee0be038b244f | 2 | 4 | 7e4485f8285311efabcee0be038b244f | | 21ad382b2ddb11ef908ee0be038b244f | 6 | 3 | 7e44b160285311efabcee0be038b244f | | 21ad6c562ddb11ef908ee0be038b244f | 7 | 2 | 7e44b160285311efabcee0be038b244f | | 21adb7be2ddb11ef908ee0be038b244f | 11 | 30 | 7e44e44c285311efabcee0be038b244f | | 21d796a62ddb11ef908ee0be038b244f | 12 | 1 | 7e6b5ae4285311efabcee0be038b244f | +----------------------------------+------+-------+----------------------------------+ 6 rows in set (0.00 sec) mysql> select * from products; +-----+-----------------+-----------------+----------+----------------------+-------------------------------------------------------------------+--------+--------+------+ | cid | title | subtitle | wtype | img | cdesc | oprice | nprice | tid | +-----+-----------------+-----------------+----------+----------------------+-------------------------------------------------------------------+--------+--------+------+ | 1 | 小米10 | 小米10青春版 | 小米 | img/cellphone/1.png | 小米10青春版 | 5999 | 4999 | 1 | | 2 | Xiaomi 14 Ultra | Xiaomi 14 Ultra | 小米自营 | img/cellphone/2.png | 徕卡光学 Summilux 镜头,第三代骁龙?8移动平台 | 5999 | 4999 | 1 | | 3 | 小米10 Pro | 小米10 Pro | 小米自营 | img/cellphone/3.png | 【直播间购机加赠多彩腕带保护壳】性能旋风,席卷而来 | 5999 | 4999 | 1 | | 4 | 小米10 Pro | 小米10 Pro | 小米自营 | img/cellphone/4.png | 骁龙845处理器,AI变焦双摄,红外人脸解锁,AI变焦双摄,红外人脸解锁 | 5999 | 4999 | 1 | | 5 | 小米10 Pro | 小米10 Pro | 小米自营 | img/cellphone/5.png | 骁龙845处理器,AI变焦双摄,红外人脸解锁,AI变焦双摄,红外人脸解锁 | 5999 | 4999 | 1 | | 6 | 小米10 Pro | 小米10 Pro | 小米自营 | img/cellphone/6.png | 骁龙845处理器,AI变焦双摄,红外人脸解锁,AI变焦双摄,红外人脸解锁 | 5999 | 4999 | 1 | | 7 | 小米10 Pro | 小米10 Pro | 小米自营 | img/cellphone/7.png | 骁龙845处理器,AI变焦双摄,红外人脸解锁,AI变焦双摄,红外人脸解锁 | 5999 | 4999 | 1 | | 8 | 小米10 Pro | 小米10 Pro | 小米自营 | img/cellphone/8.png | 骁龙845处理器,AI变焦双摄,红外人脸解锁,AI变焦双摄,红外人脸解锁 | 5999 | 4999 | 1 | | 9 | 小米10 Pro | 小米10 Pro | 小米自营 | img/cellphone/9.png | 骁龙845处理器,AI变焦双摄,红外人脸解锁,AI变焦双摄,红外人脸解锁 | 5999 | 4999 | 1 | | 10 | 小米10 Pro | 小米10 Pro | 小米自营 | img/cellphone/10.png | 骁龙845处理器,AI变焦双摄,红外人脸解锁,AI变焦双摄,红外人脸解锁 | 5999 | 4999 | 1 | | 11 | maojin | maojin | jingdong | img/maojin.png | maojin miaoshu | 39.99 | 9.9 | 5 | | 12 | yashua | yashua | taobao | img/yashua.png | yashua miaoshu | 19.99 | 11.9 | 5 |- +-----+-----------------+-----------------+----------+----------------------+-------------------------------------------------------------------+--------+--------+------+ 12 rows in set (0.00 sec) mysql> select * from types; +-----+------------+----------------+ | tid | tname | tdesc | +-----+------------+----------------+ | 1 | 手机 | 手机描述 | | 2 | 智能穿戴 | 智能穿戴描述 | | 3 | 笔记本平板 | 笔记本平板描述 | | 4 | 家电 | 家电描述 | | 5 | 生活用品 | 生活电器描述 | | 6 | 厨房电器 | 厨房电器描述 | | 7 | 智能家具 | 智能家具描述 | +-----+------------+----------------+ 7 rows in set (0.00 sec)数据准备完成
代码实现
pom.xml
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.example</groupId> <artifactId>days70</artifactId> <version>1.0-SNAPSHOT</version> <packaging>jar</packaging> <name>days70</name> <url>http://maven.apache.org</url> <properties><project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencies><dependency><groupId>junit</groupId><artifactId>junit</artifactId><version>4.12</version><scope>test</scope></dependency> <dependency><groupId>org.mybatis</groupId><artifactId>mybatis</artifactId><version>3.4.6</version></dependency> <dependency><groupId>mysql</groupId><artifactId>mysql-connector-java</artifactId><version>5.1.46</version></dependency> <dependency><groupId>org.projectlombok</groupId><artifactId>lombok</artifactId><version>1.18.16</version><scope>provided</scope></dependency> </dependencies> </project>
mybatis-config.xml
<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE configurationPUBLIC "-//mybatis.org//DTD Config 3.0//EN""https://mybatis.org/dtd/mybatis-3-config.dtd"> <configuration> <settings><!--日志实现--><setting name="logImpl" value="STDOUT_LOGGING"/></settings> <environments default="development"><environment id="development"><transactionManager type="JDBC"/><dataSource type="POOLED"><property name="driver" value="com.mysql.jdbc.Driver"/><property name="url" value="jdbc:mysql://localhost:3306/mi?useSSL=false"/><property name="username" value="root"/><property name="password" value="Abc@1234"/></dataSource></environment></environments><mappers><mapper resource="com/saas/dao/OrderMapper.xml"/><mapper resource="com/saas/dao/UserMapper.xml"/><mapper resource="com/saas/dao/DetailMapper.xml"/><mapper resource="com/saas/dao/ProductsMapper.xml"/><mapper resource="com/saas/dao/TypeMapper.xml"/></mappers> </configuration>
pojo
package com.saas.pojo;import lombok.Data;import java.util.List;@Data public class Orders {private String oid ;private Users u ;private String paytype;private double price ;private List<Details> details; }package com.saas.pojo;import lombok.Data;@Data public class Users {private int uid ;private String username;private String password;private String phone ;private int age ;private String addr ;private String sex ; }package com.saas.pojo;import lombok.Data;@Data public class Details {private String did ;private Products p ;private int count; }package com.saas.pojo;import lombok.Data;@Data public class Products {private int cid ;private String title ;private String subtitle;private String wtype ;private String img ;private String cdesc ;private double oprice ;private double nprice ;private Types t; }package com.saas.pojo;import lombok.Data;@Data public class Types {private String tid ;private String tname;private String tdesc; }
mapper文件
<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE mapperPUBLIC "-//mybatis.org//DTD Mapper 3.0//EN""https://mybatis.org/dtd/mybatis-3-mapper.dtd"> <mapper namespace="com.saas.dao.OrderMapper"><select id="getAllOrders" resultMap="orderMap">select * from orders</select><resultMap id="orderMap" type="com.saas.pojo.Orders"><id property="oid" column="oid"/><result property="price" column="price"/><result property="paytype" column="paytype"/><association property="u" javaType="com.saas.pojo.Users" column="uid" select="com.saas.dao.UserMapper.getUserByUid"></association><collection property="details" javaType="java.util.List" ofType="com.saas.pojo.Details" select="com.saas.dao.DetailMapper.getDetailsByOid" column="oid"></collection></resultMap> </mapper><?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE mapperPUBLIC "-//mybatis.org//DTD Mapper 3.0//EN""https://mybatis.org/dtd/mybatis-3-mapper.dtd"> <mapper namespace="com.saas.dao.UserMapper"><select id="getUserByUid" resultType="com.saas.pojo.Users">select * from users where uid = #{uid}</select> </mapper><?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE mapperPUBLIC "-//mybatis.org//DTD Mapper 3.0//EN""https://mybatis.org/dtd/mybatis-3-mapper.dtd"> <mapper namespace="com.saas.dao.DetailMapper"><select id="getDetailsByOid" resultMap="detailMap">select * from orderdetail where oid = #{oid}</select><resultMap id="detailMap" type="com.saas.pojo.Details"><id property="did" column="did"/><result property="count" column="count"/><association property="p" javaType="com.saas.pojo.Products" column="pid"select="com.saas.dao.ProductMapper.getProductByPid" /></resultMap> </mapper><?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE mapperPUBLIC "-//mybatis.org//DTD Mapper 3.0//EN""https://mybatis.org/dtd/mybatis-3-mapper.dtd"> <mapper namespace="com.saas.dao.ProductMapper"><select id="getProductByPid" resultMap="productMap">select * from products where cid = #{cid}</select><resultMap id="productMap" type="com.saas.pojo.Products"><id property="pid" column="pid"/><result property="nprice" column="nprice"/><association property="t" javaType="com.saas.pojo.Types" column="tid" select="com.saas.dao.TypeMapper.getTypeByTid"></association></resultMap> </mapper><?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE mapperPUBLIC "-//mybatis.org//DTD Mapper 3.0//EN""https://mybatis.org/dtd/mybatis-3-mapper.dtd"> <mapper namespace="com.saas.dao.TypeMapper"><select id="getTypeByTid" resultType="com.saas.pojo.Types">select * from types where tid = #{tid}</select> </mapper>
最后的运行结果
Created connection 1224741501. ==> Preparing: select * from orders ==> Parameters: <== Columns: oid, uid, paytype, price <== Row: 7e4485f8285311efabcee0be038b244f, 1, cash, 29999 ====> Preparing: select * from users where uid = ? ====> Parameters: 1(Integer) <==== Columns: uid, username, password, phone, age, addr, sex <==== Row: 1, liwei, 123456, 119, 20, xianyangzhiye, boy <==== Total: 1 ====> Preparing: select * from orderdetail where oid = ? ====> Parameters: 7e4485f8285311efabcee0be038b244f(String) <==== Columns: did, pid, count, oid <==== Row: 21ac58702ddb11ef908ee0be038b244f, 1, 3, 7e4485f8285311efabcee0be038b244f ======> Preparing: select * from products where cid = ? ======> Parameters: 1(Integer) <====== Columns: cid, title, subtitle, wtype, img, cdesc, oprice, nprice, tid <====== Row: 1, 小米10, 小米10青春版, 小米, img/cellphone/1.png, 小米10青春版, 5999, 4999, 1 ========> Preparing: select * from types where tid = ? ========> Parameters: 1(Integer) <======== Columns: tid, tname, tdesc <======== Row: 1, 手机, 手机描述 <======== Total: 1 <====== Total: 1 <==== Row: 21ad0cc52ddb11ef908ee0be038b244f, 2, 4, 7e4485f8285311efabcee0be038b244f ======> Preparing: select * from products where cid = ? ======> Parameters: 2(Integer) <====== Columns: cid, title, subtitle, wtype, img, cdesc, oprice, nprice, tid <====== Row: 2, Xiaomi 14 Ultra, Xiaomi 14 Ultra, 小米自营, img/cellphone/2.png, 徕卡光学 Summilux 镜头,第三代骁龙?8移动平台, 5999, 4999, 1 <====== Total: 1 <==== Total: 2 <== Row: 7e44b160285311efabcee0be038b244f, 1, alipay, 19999 ====> Preparing: select * from orderdetail where oid = ? ====> Parameters: 7e44b160285311efabcee0be038b244f(String) <==== Columns: did, pid, count, oid <==== Row: 21ad382b2ddb11ef908ee0be038b244f, 6, 3, 7e44b160285311efabcee0be038b244f ======> Preparing: select * from products where cid = ? ======> Parameters: 6(Integer) <====== Columns: cid, title, subtitle, wtype, img, cdesc, oprice, nprice, tid <====== Row: 6, 小米10 Pro, 小米10 Pro, 小米自营, img/cellphone/6.png, 骁龙845处理器,AI变焦双摄,红外人脸解锁,AI变焦双摄,红外人脸解锁, 5999, 4999, 1 <====== Total: 1 <==== Row: 21ad6c562ddb11ef908ee0be038b244f, 7, 2, 7e44b160285311efabcee0be038b244f ======> Preparing: select * from products where cid = ? ======> Parameters: 7(Integer) <====== Columns: cid, title, subtitle, wtype, img, cdesc, oprice, nprice, tid <====== Row: 7, 小米10 Pro, 小米10 Pro, 小米自营, img/cellphone/7.png, 骁龙845处理器,AI变焦双摄,红外人脸解锁,AI变焦双摄,红外人脸解锁, 5999, 4999, 1 <====== Total: 1 <==== Total: 2 <== Row: 7e44e44c285311efabcee0be038b244f, 2, cash, 11.99 ====> Preparing: select * from users where uid = ? ====> Parameters: 2(Integer) <==== Columns: uid, username, password, phone, age, addr, sex <==== Row: 2, hejiahao, 123456, 110, 20, xianshi, boy <==== Total: 1 ====> Preparing: select * from orderdetail where oid = ? ====> Parameters: 7e44e44c285311efabcee0be038b244f(String) <==== Columns: did, pid, count, oid <==== Row: 21adb7be2ddb11ef908ee0be038b244f, 11, 30, 7e44e44c285311efabcee0be038b244f ======> Preparing: select * from products where cid = ? ======> Parameters: 11(Integer) <====== Columns: cid, title, subtitle, wtype, img, cdesc, oprice, nprice, tid <====== Row: 11, maojin, maojin, jingdong, img/maojin.png, maojin miaoshu, 39.99, 9.9, 5 ========> Preparing: select * from types where tid = ? ========> Parameters: 5(Integer) <======== Columns: tid, tname, tdesc <======== Row: 5, 生活用品, 生活电器描述 <======== Total: 1 <====== Total: 1 <==== Total: 1 <== Row: 7e6b5ae4285311efabcee0be038b244f, 3, wei, 299.9 ====> Preparing: select * from users where uid = ? ====> Parameters: 3(Integer) <==== Columns: uid, username, password, phone, age, addr, sex <==== Row: 3, chenxiaoling, 123456, 119, 20, xian, girl <==== Total: 1 ====> Preparing: select * from orderdetail where oid = ? ====> Parameters: 7e6b5ae4285311efabcee0be038b244f(String) <==== Columns: did, pid, count, oid <==== Row: 21d796a62ddb11ef908ee0be038b244f, 12, 1, 7e6b5ae4285311efabcee0be038b244f ======> Preparing: select * from products where cid = ? ======> Parameters: 12(Integer) <====== Columns: cid, title, subtitle, wtype, img, cdesc, oprice, nprice, tid <====== Row: 12, yashua, yashua, taobao, img/yashua.png, yashua miaoshu, 19.99, 11.9, 5 <====== Total: 1 <==== Total: 1 <== Total: 4 Orders(oid=7e4485f8285311efabcee0be038b244f, u=Users(uid=1, username=liwei, password=123456, phone=119, age=20, addr=xianyangzhiye, sex=boy), paytype=cash, price=29999.0, details=[Details(did=21ac58702ddb11ef908ee0be038b244f, p=Products(cid=1, title=小米10, subtitle=小米10青春版, wtype=小米, img=img/cellphone/1.png, cdesc=小米10青春版, oprice=5999.0, nprice=4999.0, t=Types(tid=1, tname=手机, tdesc=手机描述)), count=3), Details(did=21ad0cc52ddb11ef908ee0be038b244f, p=Products(cid=2, title=Xiaomi 14 Ultra, subtitle=Xiaomi 14 Ultra, wtype=小米自营, img=img/cellphone/2.png, cdesc=徕卡光学 Summilux 镜头,第三代骁龙?8移动平台, oprice=5999.0, nprice=4999.0, t=Types(tid=1, tname=手机, tdesc=手机描述)), count=4)]) Orders(oid=7e44b160285311efabcee0be038b244f, u=Users(uid=1, username=liwei, password=123456, phone=119, age=20, addr=xianyangzhiye, sex=boy), paytype=alipay, price=19999.0, details=[Details(did=21ad382b2ddb11ef908ee0be038b244f, p=Products(cid=6, title=小米10 Pro, subtitle=小米10 Pro, wtype=小米自营, img=img/cellphone/6.png, cdesc=骁龙845处理器,AI变焦双摄,红外人脸解锁,AI变焦双摄,红外人脸解锁, oprice=5999.0, nprice=4999.0, t=Types(tid=1, tname=手机, tdesc=手机描述)), count=3), Details(did=21ad6c562ddb11ef908ee0be038b244f, p=Products(cid=7, title=小米10 Pro, subtitle=小米10 Pro, wtype=小米自营, img=img/cellphone/7.png, cdesc=骁龙845处理器,AI变焦双摄,红外人脸解锁,AI变焦双摄,红外人脸解锁, oprice=5999.0, nprice=4999.0, t=Types(tid=1, tname=手机, tdesc=手机描述)), count=2)]) Orders(oid=7e44e44c285311efabcee0be038b244f, u=Users(uid=2, username=hejiahao, password=123456, phone=110, age=20, addr=xianshi, sex=boy), paytype=cash, price=11.99, details=[Details(did=21adb7be2ddb11ef908ee0be038b244f, p=Products(cid=11, title=maojin, subtitle=maojin, wtype=jingdong, img=img/maojin.png, cdesc=maojin miaoshu, oprice=39.99, nprice=9.9, t=Types(tid=5, tname=生活用品, tdesc=生活电器描述)), count=30)]) Orders(oid=7e6b5ae4285311efabcee0be038b244f, u=Users(uid=3, username=chenxiaoling, password=123456, phone=119, age=20, addr=xian, sex=girl), paytype=wei, price=299.9, details=[Details(did=21d796a62ddb11ef908ee0be038b244f, p=Products(cid=12, title=yashua, subtitle=yashua, wtype=taobao, img=img/yashua.png, cdesc=yashua miaoshu, oprice=19.99, nprice=11.9, t=Types(tid=5, tname=生活用品, tdesc=生活电器描述)), count=1)]) Closing JDBC Connection [com.mysql.jdbc.JDBC4Connection@4900127d]