上一页 1 2 3 4 5 6 ··· 24 下一页
摘要: 阅读全文
posted @ 2020-10-18 00:11 python成长中 阅读(32) 评论(0) 推荐(0) 编辑
摘要: 使用selectKey <!--数据插入操作--> <insert id="insertGoods" parameterType="com.imooc.mybatis.entity.GoodsEntity"> <!-- t_goods数据库字段属性,values里javaBean字段属性一一映射 - 阅读全文
posted @ 2020-10-17 23:44 python成长中 阅读(1194) 评论(0) 推荐(0) 编辑
摘要: 无字段映射 <!--多表查询--> <!--返回的是数据库的字段属性无法和javaBean的属性一一映射--> <select id="goodsAndcategory" resultType="java.util.LinkedHashMap"> SELECT g.*,c.category_name 阅读全文
posted @ 2020-10-17 15:55 python成长中 阅读(302) 评论(0) 推荐(0) 编辑
摘要: 传递一位参数 <!-- 传参一位数 --> <!--parameterType 外部传参一个整数 --> <!--resultType 结果的类型 --> <select id="findOneById" parameterType="integer" resultType="com.imooc.m 阅读全文
posted @ 2020-10-16 21:02 python成长中 阅读(634) 评论(0) 推荐(0) 编辑
摘要: 第一创建实体类 package com.imooc.mybatis.entity; public class GoodsEntity { private Integer goodsId; //商品编号 private String title;//标题 private String subTitle 阅读全文
posted @ 2020-10-16 16:52 python成长中 阅读(362) 评论(0) 推荐(0) 编辑
摘要: MyBatis 环境配置 <?xml version="1.0" encoding="UTF-8" ?><!DOCTYPE configuration PUBLIC "-//mybatis.org//DTD Config 3.0//EN" "http://mybatis.org/dtd/mybati 阅读全文
posted @ 2020-10-15 21:22 python成长中 阅读(281) 评论(0) 推荐(0) 编辑
摘要: Mybatis 开发流程 引入Mybatis依赖 创建核心配置文件 创建实体(Entity)类 创建Mapper映射文件 初始化SessionFactory 利用SqlSession对象操作数据 阅读全文
posted @ 2020-10-15 15:48 python成长中 阅读(128) 评论(0) 推荐(0) 编辑
摘要: 工厂模式 工厂模式是用于隐藏创建对象的细节 工厂模式核心:工厂类(Factory) 工厂模式细分为:简单工厂,工厂方法与抽象工厂 阅读全文
posted @ 2020-10-15 15:02 python成长中 阅读(50) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-10-08 23:32 python成长中 阅读(46) 评论(0) 推荐(0) 编辑
摘要: C3P0连接池 C3P0的连接池使用 @Test /** * 配置文件的使用,在src下 编写c3p0-config.xml文件就行了默认识别 */ public void c3p0() { Connection conn = null; PreparedStatement pstmt = null 阅读全文
posted @ 2020-10-07 22:34 python成长中 阅读(122) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 24 下一页