推荐
专栏
教程
课程
飞鹅
选择你喜欢封面图
保存设置
取消保存
执键写春秋
Lv1
男
关 注
没有绝世神功!!!
粉丝
2
关注
0
文章
28
专栏
2
访问
44114
获赞
0
博客
专栏
收藏
粉丝
关注
小型电子商务平台的设计与实现
执键写春秋
•
6章节
•
0阅读
订阅
Java面试核心知识点-原理专栏
执键写春秋
•
15章节
•
0阅读
订阅
28
文章
2
专栏
4.4w
访问
0
获赞
热门文章
执键写春秋
基于Maven工程下的MyBatis基本使用之SQL传单/多参、多表关联查询
0 点赞
•
2.2k 阅读
执键写春秋
notifyAll唤醒线程的范围?
1 点赞
•
1.6k 阅读
执键写春秋
Java泛型使用之实现一个能够对字符、整型、浮点型、字节型、对象进行大小比较的方法
0 点赞
•
1.5k 阅读
执键写春秋
基于Apache DBUtil、Druid、MySQL与java.util.Scanner的 新闻管理系统【控制台版】
0 点赞
•
2.3k 阅读
执键写春秋
基于Maven工程下的MyBatis框架+MySQL+连接池的数据查询操作
1 点赞
•
2.2k 阅读
热门评论
执键写春秋
若多表关联查询返回的是t_category数据表中多列值,可参照Goods,新建一个Category的JavaBean,在拓展的GoodsDTO类中,实例化Category。对应的goods.xml可修改为: <resultMap id="rmGoods" type="com.imooc.mybatis.dto.GoodsDTO"> <!--设置主键字段与属性映射--> <id column="goods_id" property="goods.goodsId"/> <!--设置非主键字段与属性映射--> <result column="title" property="goods.title"/> <result column="original_cost" property="goods.originalCost"/> <result column="current_price" property="goods.currentPrice"/> <result column="discount" property="goods.discount"/> <result column="is_free_delivery" property="goods.isFreeDelivery"/> <result column="category_id" property="goods.categoryId"/> <result column="category_id" property="category.categoryId"/> <result column="category_name" property="category.categoryName"/> <result column="parent_id" property="category.parentId"/> <result column="category_level" property="category.categoryLevel"/> <result column="category_order" property="category.categoryOrder"/> <result column="test" property="test"/> </resultMap> <select id="selectGoodsDTO" resultMap="rmGoods"> select g.* , c.*,'1' as test from t_goods g , t_category c where g.category_id = c.category_id </select>
基于Maven工程下的MyBatis基本使用之SQL传单/多参、多表关联查询
2021年06月22日
•
1条讨论
执键写春秋
我始终相信一句话,只有自己强大,才不会被别人践踏!🤣
集合——Map(Key不可重复,Value可重复)
2021年05月14日
•
2条讨论
执键写春秋
让我恐惧的不仅仅是未知,大部分源于自己的无知!🤣
数据结构——双向链表及其Java实现
2021年05月14日
•
1条讨论
执键写春秋
没有异禀的天赋,只能凭着满腔热爱去成就自己!🤣
Java泛型
2021年05月14日
•
1条讨论
执键写春秋
年龄从来不是界限,除非你自己拿来为难自己!🤣
集合——List:可重复
2021年05月14日
•
2条讨论