Spring属性注入(set方式、构造函数方式、p名称空间、spel、复杂类型)
1、set注入方式
(1)注入的为值类型(八大数据类型)的数据
配置文件:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://www.springframework.org/schema/beans"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-4.2.xsd ">
<bean name="student" class="pers.zhb.domain.Student">
<property name="sname" value="zhai"></property>
<property name="snum" value="20200210"></property>
<property name="sex" value="nan"></property>
</bean>
</beans>
也可以以子标签的方式配置:
<property name="">
<value>123</value>
</property>
测试类:
public class Test {
public void test1(){
ApplicationContext applicationContext=new
ClassPathXmlApplicationContext("applicationContext.xml");//创建容器对象
Student student=(Student)applicationContext.getBean("student");
System.out.println(student);
}
public static void main(String[] args){
Test test=new Test();
test.test1();
}
}
(2)注入的为引用数据类型的数据:
Student对象:
package pers.zhb.domain;
public class Student {
private String snum;
private String sname;
private String sex;
private Course course;
public Course getCourse() {
return course;
} public void setCourse(Course course) {
this.course = course;
} public Student(){
System.out.println("Student对象创建了!");
}
public String getSnum() {
return snum;
} public void setSnum(String snum) {
this.snum = snum;
} public String getSname() {
return sname;
} public void setSname(String sname) {
this.sname = sname;
} public String getSex() {
return sex;
} public void setSex(String sex) {
this.sex = sex;
}
@Override
public String toString() {
return "Student{" +
"snum='" + snum + '\'' +
", sname='" + sname + '\'' +
", sex='" + sex + '\'' +
", course=" + course +
'}';
} public void destory(){
System.out.println("我是销毁的方法!");
} public void init(){
System.out.println("我是初始化的方法!");
} }
Course对象:
public class Course {
private String cname;
public String getCname() {
return cname;
} public void setCname(String cname) {
this.cname = cname;
}
@Override
public String toString() {
return "Course{" +
"cname='" + cname + '\'' +
'}';
}
}
配置文件:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.springframework.org/schema/beans" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.2.xsd ">
<bean name="student" class="pers.zhb.domain.Student">
<property name="sname" value="zhai"></property>
<property name="snum" value="20200210"></property>
<property name="sex" value="nan"></property>
<property name="course" ref="course"></property>
</bean>
<bean name="course" class="pers.zhb.domain.Course">
<property name="cname" value="算法设计与分析"></property>
</bean>
</beans>
测试类:
public class Test {
public void test1(){
ApplicationContext applicationContext=new
ClassPathXmlApplicationContext("applicationContext.xml");//创建容器对象
Student student=(Student)applicationContext.getBean("student");
System.out.println(student);
}
public static void main(String[] args){
Test test=new Test();
test.test1();
}
}
2、构造函数注入
创建Student对象:
package pers.zhb.domain;
public class Student {
private String snum;
private String sname;
private String sex;
private Course course;
public Student(String snum, String sname, String sex, Course course) {
this.snum = snum;
this.sname = sname;
this.sex = sex;
this.course = course;
}
public Course getCourse() {
return course;
} public void setCourse(Course course) {
this.course = course;
} public Student(){
System.out.println("Student对象创建了!");
}
public String getSnum() {
return snum;
} public void setSnum(String snum) {
this.snum = snum;
} public String getSname() {
return sname;
} public void setSname(String sname) {
this.sname = sname;
} public String getSex() {
return sex;
} public void setSex(String sex) {
this.sex = sex;
}
@Override
public String toString() {
return "Student{" +
"snum='" + snum + '\'' +
", sname='" + sname + '\'' +
", sex='" + sex + '\'' +
", course=" + course +
'}';
} public void destory(){
System.out.println("我是销毁的方法!");
} public void init(){
System.out.println("我是初始化的方法!");
} }
需要在Student类中创建一个构造函数。
配置文件:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.springframework.org/schema/beans" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.2.xsd ">
<bean name="student" class="pers.zhb.domain.Student">
<constructor-arg name="sname" value="zhai"></constructor-arg>
<constructor-arg name="snum" value="123456"></constructor-arg>
<constructor-arg name="sex" value="nan"></constructor-arg>
<constructor-arg name="course" ref="course"></constructor-arg>
</bean>
<bean name="course" class="pers.zhb.domain.Course">
<property name="cname" value="算法设计与分析"></property>
</bean>
</beans>
配置文件中的配置需要和构造函数中属性的配置一一对应。
其他属性:
index:指定构造函数的参数的索引
type:指定构造函数参数的类型
3、p名称空间方式(对set方式注入进行简化)
(1)导入p名称空间(前提):
xmlns:p="http://www.springframework.org/schema/p"
(2)配置文件:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://www.springframework.org/schema/beans"
xmlns:p="http://www.springframework.org/schema/p"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.2.xsd ">
<bean name="student" class="pers.zhb.domain.Student" p:sname="zhai"
p:sex="nan" p:snum="1234" p:course-ref="course">
</bean>
<bean name="course" class="pers.zhb.domain.Course">
<property name="cname" value="电子技术"></property>
</bean>
</beans>
测试:
4、spel(Spring表达式语言)注入
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://www.springframework.org/schema/beans"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.2.xsd ">
<bean name="student" class="pers.zhb.domain.Student">
<property name="sname" value="zhang"></property>
<property name="snum" value="11111"></property>
<property name="sex" value="nv"></property>
</bean>
<bean name="course" class="pers.zhb.domain.Course">
<property name="cname" value="电子技术"></property>
</bean>
<bean name="student1" class="pers.zhb.domain.Student">
<property name="sname" value="#{student.sname}"></property>
<property name="snum" value="#{student.snum}"></property>
<property name="sex" value="#{student.sex}"></property>
<property name="course" ref="course"></property>
</bean>
</beans>
可以直接去取已经创建的对象的值。
5、复杂类型注入
(1)数组类型:
添加一个值:
<bean name="arr" class="pers.zhb.domain.CollectionBean">
<property name="arr" value="加油!!"></property>
</bean>
添加多个值:
<bean name="arr" class="pers.zhb.domain.CollectionBean">
<property name="arr">
<array>
<value>你好</value>
<value>加油</value>
<value>努力</value>
</array>
</property>
</bean>
值加对象:
<bean name="arr" class="pers.zhb.domain.CollectionBean">
<property name="arr">
<array>
<value>你好</value>
<value>加油</value>
<value>努力</value>
<ref bean="student"></ref>
</array>
</property>
</bean>
第四个值为一个Student对象。
(2)List类型:
<bean name="cb" class="pers.zhb.domain.CollectionBean">
<property name="li">
<list>
<value>你好</value>
<value>加油</value>
<value>努力</value>
<ref bean="student"></ref>
</list>
</property>
</bean>
(3)map类型:
<bean name="map" class="pers.zhb.domain.CollectionBean">
<property name="map">
<map>
<entry key="key" value="value"></entry>
<entry key="student" value-ref="student"></entry>
</map>
</property>
</bean>
(4)properties类型:
<bean name="prop" class="pers.zhb.domain.CollectionBean">
<property name="properties">
<props>
<prop key="key">key</prop>
</props>
</property>
</bean>
Spring属性注入(set方式、构造函数方式、p名称空间、spel、复杂类型)的更多相关文章
- 六 Spring属性注入的四种方式:set方法、构造方法、P名称空间、SPEL表达式
Spring的属性注入: 构造方法的属性注入 set方法的属性注入
- Spring中属性注入的几种方式以及复杂属性的注入
在Spring框架中,属性的注入我们有多种方式,我们可以通过构造方法注入,可以通过set方法注入,也可以通过p名称空间注入,方式多种多样,对于复杂的数据类型比如对象.数组.List集合.map集合.P ...
- Spring中属性注入的几种方式以及复杂属性的注入详解
在spring框架中,属性的注入我们有多种方式,我们可以通过set方法注入,可以通过构造方法注入,也可以通过p名称空间注入,方式多种多样,对于复杂的数据类型比如对象.数组.List.Map.Prope ...
- Spring静态注入的三种方式
版权声明:本文为博主原创文章,未经博主允许不得转载. https://blog.csdn.net/chen1403876161/article/details/53644024Spring静态注入的三 ...
- Spring 属性注入(一)JavaBean 内省机制在 BeanWrapper 中的应用
Spring 属性注入(一)JavaBean 内省机制在 BeanWrapper 中的应用 Spring 系列目录(https://www.cnblogs.com/binarylei/p/101174 ...
- Spring 属性注入(二)BeanWrapper 结构
Spring 属性注入(二)BeanWrapper 结构 Spring 系列目录(https://www.cnblogs.com/binarylei/p/10117436.html) BeanWrap ...
- Spring 属性注入(三)AbstractNestablePropertyAccessor
Spring 属性注入(三)AbstractNestablePropertyAccessor Spring 系列目录(https://www.cnblogs.com/binarylei/p/10117 ...
- Spring 属性注入(四)属性键值对 - PropertyValue
Spring 属性注入(四)属性键值对 - PropertyValue Spring 系列目录(https://www.cnblogs.com/binarylei/p/10117436.html) P ...
- SSH深度历险记(八) 剖析SSH核心原则+Spring依赖注入的三种方式
于java发育.一类程序猿必须依靠类的其他方法,它是通常new依赖类的方法,然后调用类的实例,这样的发展问题new良好的班统一管理的例子.spring提出了依赖注入的思想,即依赖类不由程 ...
随机推荐
- Prefrontal cortex as a meta-reinforcement learning system
郑重声明:原文参见标题,如有侵权,请联系作者,将会撤销发布! Nature Neuroscience, 2018 Abstract 在过去的20年中,基于奖励的学习的神经科学研究已经集中在经典模型上, ...
- koa-graphql express-graphql 中如何 定义每一个字段resolver执行函数
第一种方式: 首先来看一下,官方给出的koa-graphql的例子, ```js var express = require('express'); var {graphqlHTTP} = requ ...
- js实现树级递归,通过js生成tree树形菜单(递归算法)
方法封装: /** * 数据转换为树形(递归),示例:toTreeByRecursion(source, 'id', 'parentId', null, 'children') * @param {A ...
- windows 下编译libcurl
因为linux平台采用了libcurl,有一个程序移植到到windows平台,再linux采用libcurl.在windows下准备也采用该库.在网上搜索了几位同行写的,步骤上面有缺失. 本文将以详细 ...
- node.js的安装及其相关环境变量的配置
笔者最近一直重置电脑,本来想换台mac,想了想还是加下配置吧. 于是慢慢的一直会去安装node 接下来进入教程环节 一.NodeJS下载 1.下载NodeJS安装包下载地址:NodeJS下载 2.开始 ...
- Tiled and Unity
https://www.mapeditor.org https://assetstore.unity.com/packages/tools/integration/tiled-to-unity-172 ...
- 使用IDEA写Python之pytest环境搭建及第一个程序编写
一.准备篇 Python环境:3.8.3 开发工具:IDEA,对你没有看错 二.IDEA下安装开发环境 1. python的下载 https://www.python.org/downloads/ P ...
- C#发送邮件三种方法,Localhost,SMTP,SSL-SMTP
C#发送邮件三种方法,Localhost,SMTP,SSL-SMTP 通过.Net FrameWork 2.0下提供的“System.Net.Mail”可以轻松的实现,本文列举了3种途径来发送: 1. ...
- 有关Sql中时间范围的问题
背景 有时候需要利用sql中处理关于时间的判别问题,简单的如比较时间的早晚,判断一个时间是否在一段时间内的问题等.如果简单将时间判断与数值比较等同,那就会出现一些问题. 处理方式 处理Sql时间范围的 ...
- iTextSharp生成PDF文件
这是一篇简单的教程,所以只涉及一些iTextSharp生成pdf的简单应用,详细教程请搜索iTextSharp进入官网看官方文档(英文版). iTextSharp官方文档:https://itextp ...