摘要: <!--批量插入--> <select id="batchInsert" parameterType="java.util.List"> insert into t_goods(title,sub_title,original_cost,current_price,discount,is_free_ 阅读全文
posted @ 2020-10-19 15:44 python成长中 阅读(273) 评论(0) 推荐(0) 编辑
摘要: 一。 package com.imooc.mybatis.datasource; import com.mchange.v2.c3p0.ComboPooledDataSource; import org.apache.ibatis.datasource.unpooled.UnpooledDataSo 阅读全文
posted @ 2020-10-19 14:33 python成长中 阅读(191) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-10-19 13:56 python成长中 阅读(87) 评论(0) 推荐(0) 编辑
摘要: <!--一对多操作--> <!--resultMap一对多的关系或多对一的关联映射--> <resultMap id="rmGoods" type="com.imooc.mybatis.entity.GoodsEntity"> <!--主键--> <id property="goodsId" col 阅读全文
posted @ 2020-10-19 10:16 python成长中 阅读(408) 评论(0) 推荐(0) 编辑
摘要: <mapper namespace="goods"> <!--开启二级缓存 eviction:代表的是缓存回收策略,常⻅下⾯两种。 (1) LRU,最近最少使⽤的,⼀处最⻓时间不⽤的对象 (2) FIFO,先进先出,按对象进⼊缓存的顺序来移除他们 flushInterval:刷新间隔时间,单位为毫秒 阅读全文
posted @ 2020-10-19 10:13 python成长中 阅读(79) 评论(0) 推荐(0) 编辑