摘要:
1.加载单个配置文件 2.加载多个配置文件 3.路径表达式的书写方法 阅读全文
摘要:
1.形式 2. 单参数传递,使用parameterType指定参数的数据类型即可,SQL中#{value}提取参数parameterType="Integer" 2.1 goods.xml <!-- 单参数传递,使用parameterType指定参数的数据类型即可,SQL中#{value}提取参数- 阅读全文
摘要:
1.MyBatis数据查询步骤 1.1 创建实体类entity 1.2 创建mapper xml文件来说明当前sql语句是什么并编写<select > sql语句 1.3 在mybatis-config.xml开启驼峰映射 1.4 在mybatis-config.xml新增mapper xml的声明 阅读全文
摘要:
1.什么是SqlSessionFactory 2. src/main/java/com/imooc/mybatis/utils/MyBatisUtils.java package com.imooc.mybatis.utils; import org.apache.ibatis.io.Resourc 阅读全文
摘要:
1. pom.xml <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis</artifactId> <version>3.5.11</version> </dependency> <dependency> <groupId> 阅读全文
摘要:
1.JUnit4使用方法 2. pom.xml <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> </dependency> 3.测试命名规则 阅读全文
摘要:
1.什么是Mybatis 2.Mybatis开发流程 阅读全文
摘要:
1.软件开发中的框架 2.框架的优点 3.SSM框架 阅读全文
摘要:
1.从IoC容器获取Bean 2. src/main/java/com/imooc/spring/ioc/SpringApplication.java package com.imooc.spring.ioc; import com.imooc.spring.ioc.entity.Apple; im 阅读全文
摘要:
1. 工厂实例方法创建对象是指Ioc容器对工厂类进行实例化,并调用对应的实例方法创建对象的过程 2. src/main/java/com/imooc/spring/ioc/factory/AppleFactoryInstance.java package com.imooc.spring.ioc.f 阅读全文