案例代码:https://gitee.com/flymini/codes01/tree/master/spring_/com-learn-spring02
****
下面演示如何在 IoC 容器里面对属性赋值。
<br/>
**1. 创建一个实体类**
```java
@Data
public class Complex {
/** 属性类型为 基本数据类型或字符串,或包装类型 */
private double doubleVar;
private String stringVar;
private String cataVar;
private Long longVar;
/** 属性类型为接口 */
private UserDao userDao;
private UserDao userDaoTwo;
/** 属性类型为一个实体类 */
private Student student;
/** 属性类型为集合类型 */
private String stringArray[];
private List<String> stringList;
private List<Double> doubleList;
private Set<String> stringSet;
private Map<String, Object> objectMap;
}
```
**2. 在 IoC 容器中对实体类的属性赋值**
*`resources/ApplicationContentext.xml`*
```xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:utils="http://www.springframework.org/schema/util"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/util
https://www.springframework.org/schema/util/spring-util.xsd">
<bean id="complexBean" class="com.learn.spring02.pojo.Complex">
<property name="doubleVar" value="3.14159"/>
<property name="stringVar" value="张三,你好!"/>
<property name="cataVar">
<!-- 包含特殊字符的字符串写到<![CDATA[val]]>,如<、>等 -->
<value><![CDATA[<<南京>>]]></value>
</property>
<property name="longVar" value="1000"/>
<property name="userDao" ref="userDaoImpl"/>
<property name="userDaoTwo">
<bean id="userDaoTwo" class="com.learn.spring02.dao.impl.UserDaoImpl"/>
</property>
<property name="student" ref="studentBean"/>
<property name="stringArray">
<array>
<value>中国</value>
<value>美国</value>
<value>俄罗斯</value>
</array>
</property>
<property name="stringList">
<list>
<value>中国</value>
<value>美国</value>
<value>俄罗斯</value>
</list>
</property>
<property name="doubleList" ref="moneyList"/>
<property name="stringSet">
<set>
<value>中国</value>
<value>美国</value>
<value>俄罗斯</value>
</set>
</property>
<property name="objectMap">
<map>
<entry key="zhongguo" value="中国"></entry>
<entry key="student" value-ref="studentBean"></entry>
</map>
</property>
</bean>
<bean id="userDaoImpl" class="com.learn.spring02.dao.impl.UserDaoImpl"/>
<bean id="studentBean" class="com.learn.spring02.pojo.Student">
<property name="studentName" value="王五"/>
<property name="studentAge" value="25"/>
</bean>
<!-- 也有对应的 set、map -->
<utils:list id="moneyList">
<value>79.45</value>
<value>80.05</value>
</utils:list>
</beans>
```
**3. 测试**
```java
public class ComplexTest {
/**
* 获取 IoC 容器
*/
private final ApplicationContext context = new ClassPathXmlApplicationContext("ApplicationContentext.xml");
@Test
public void testComplex() {
Complex complex = context.getBean("complexBean", Complex.class);
//3.14159
System.out.println(complex.getDoubleVar());
//张三,你好!
System.out.println(complex.getStringVar());
//<<南京>>
System.out.println(complex.getCataVar());
//1000
System.out.println(complex.getLongVar());
//UserDaoImpl.print()
complex.getUserDao().print();
//UserDaoImpl.print()
complex.getUserDaoTwo().print();
//Student(studentName=王五, studentAge=25)
System.out.println(complex.getStudent());
//[中国, 美国, 俄罗斯]
System.out.println(Arrays.asList(complex.getStringArray()));
//[中国, 美国, 俄罗斯]
System.out.println(complex.getStringList());
//[79.45, 80.05]
System.out.println(complex.getDoubleList());
//[中国, 美国, 俄罗斯]
System.out.println(complex.getStringSet());
//{zhongguo=中国, student=Student(studentName=王五, studentAge=25)}
System.out.println(complex.getObjectMap());
}
}
```
- Mybatis
- mybatis是什么
- mybatis优缺点
- 环境搭建
- 使用步骤
- 传参方式
- 无需传参
- 一个参数
- 多个参数
- 增/删/改
- 查询
- 单表查询
- 一对一查询
- 一对多查询
- 动态SQL
- 注解操作
- Spring
- Spring什么
- Spring优点
- Spring组成
- 第一个Spring程序
- 两大核心技术
- IoC控制反转
- IoC思想
- IoC容器使用步骤
- 属性注入
- IoC注入方式
- 模拟IoC实现
- AOP
- AOP概念
- AOP原理
- AOP关键术语
- AOP编程过程
- 切入点规则
- 5种增强方式
- Spring注解开发
- 注解开发的优势
- Bean注解开发
- AOP注解开发
- 完全注解开发
- 模拟Spring注解开发
- 自动装配
- 配置文件拆分
- SpringBean
- Bean常用属性
- Bean的作用域
- Bean的生命周期
- Spring整合MyBatis
- 整合步骤
- SqlSessionTemplate
- 业务层添加事务
- 事务的作用
- 配置文件事务
- 注解事务
- 事务参数
- SpringMVC
- SpringMVC是什么
- 环境搭建
- 请求流程
- 核心组件
- 前后端交互
- 简单交互演示
- 常用注解
- 后端数据传递至前端
- ServletAPI
- 访问静态资源
- 异常处理
- HandlerExceptionResolver
- 局部异常
- 全局异常
- 转发与重定向
- 转发演示
- 重定向演示
- 转发与重定向的区别
- 获取表单数据
- 表单标签
- REST风格的URL
- 异步处理
- 异步请求
- JSON数据处理
- 中文乱码处理
- 日期处理
- 上传文件
- 拦截器
- 视图解析器
- 视图类型
- 多视图解析器
- 自定义pdf视图
- JSR303数据验证
- JSR303是什么
- 常用约束
- 使用步骤
- SpringMVC整合Mybatis
- 整合步骤
- Mybatis分页插件
- SpringBoot
- SpringBoot是什么
- 环境搭建
- SpringBoot启动分析
- SpringBoot启动类
- 启动过程
- SpringBoot配置文件
- 配置文件类型
- 更改配置文件
- 读取配置文件
- 占位符
- 配置优先级
- 自定义IoC容器
- 定义方式
- 引入Spring配置文件
- @Configuration
- SpringBoot自动配置
- 自动配置原理
- 条件注解
- 自动配置报告
- 自定义自动配置
- 关闭自动配置
- 接管自动配置
- 多环境配置
- CommandLineRunner
- SpringBoot与Web开发
- 引入模板引擎
- Thymeleaf模板
- Freemarker模板
- 静态资源访问
- webjars
- 静态资源位置
- ico图标
- 指定首页
- 更换Web服务器
- 国际化
- 拦截器
- 错误处理机制
- 错误处理机制原理
- 定制错误页面
- 定制错误数据
- 上传文件
- 注册servlet三大组件
- 注册Servlet
- 注册过滤器
- 注册监听器
- 外部Tomcat与jsp模板
- 前后端交互
- 传递json字符串
- 传递js对象
- 传递表单
- 下载功能
- Swagger2文档
- SpringBoot整合JDBC
- 整合步骤
- 核心API
- JdbcTemplate
- 增删改
- 查询
- NamedParameterJdbcTemplate
- 增删改
- 查询
- SpringBoot整合Mybatis
- 整合步骤
- 切换为Druid数据源
- 添加事务
- Mybatis分页插件
- 场景启动器
- 场景启动器是什么
- 自定义场景启动器
- SpringBoot与日志
- 日志框架
- slf4j日志
- slf4j日志实现
- 统一切换为slf4j
- 日志配置
- 日志文件
- 切换日志框架
- 切换日志场景启动器
- SpringBoot与缓存
- JSR107缓存技术
- Spring缓存抽象
- 缓存注解
- SpEL表达式
- 使用缓存
- 自定义key生成器
- 缓存工作原理与流程
- SpringBoot整合Redis
- 整合步骤
- 初步使用
- 序列化机制
- 缓存管理器
- SpringBoot与任务
- 异步任务
- 实现异步任务
- 注意事项与原理
- 自定义线程池
- 定时任务
- cron表达式
- 创建定时任务
- @Scheduled参数
- 动态时间
- 邮件任务
- Quartz定时任务
- Quartz是什么
- 创建定时任务
- 触发器与任务
- 任务的CURD
- 两种触发器
- 并发问题
- 持久化
- 任务持久化
- Quartz集群
- misfire策略
- 打包插件
- appassembler-maven-plugin
- appassembler与assembly配合