spring配置Bean
Bean 就是一个类
一下代码都是基于spring之IOC和DI实现案例基础上进行解析
Bean的实例化方式:
1.无参构造
<bean id="UserService" class="com.baidu.test.UserServiceImp">
<property name="name" value="张三"></property>
</bean>
2.静态工厂方法
applicationContext.xml
<bean id="UserService" class="com.baidu.test.BeanFactory2" factory-method="CreateUserServiceImp">
<property name="name" value="张三"></property>
</bean>
创建BeanFactory2类
public class BeanFactory2 {
public static UserService CreateUserServiceImp(){
return new UserServiceImp();
}
}
3.实例工厂方法
<bean name="BeanFactory2" class="com.baidu.test.BeanFactory2"></bean>
<bean id="UserService" factory-bean="BeanFactory2" factory-method="CreateUserServiceImp">
<property name="name" value="张三"></property>
</bean>
创建BeanFactory2类
public class BeanFactory2 {
public UserService CreateUserServiceImp(){
return new UserServiceImp();
}
}
Bean的作用域
在bean的属性中有个scope,用来描述bean的作用域.
singleton | 单例 spring IOC容器中只有一个Bean实类(默认的scope) |
prototype | 多例 从spring容器中获取时都会返回一个新的实例 |
request | 将bean对象request.setAttribute()存储到request域中 |
session | 将bean对象session.setAttribute()存储到session域中 |
开发中常用singleton和prototype(单例和多例)
Bean的属性注入
1.构造方法注入
提供构造方法
public UserServiceImp(String name) {
super();
this.name = name;
}
修改applicationContext.xml文件
<bean id="UserService" class="com.baidu.test.UserServiceImp">
<constructor-arg index="0" value="张三" type="java.lang.String"></constructor-arg>
</bean>
2.Setter注入
修改applicationContext.xml
<bean id="user" class="com.baidu.test.User">
<property name="name" value="uuu"></property>
<property name="age" value="15"></property>
</bean>
<bean id="UserService" class="com.baidu.test.UserServiceImp">
<property name="name" value="uu"></property>
<property name="u" ref="user"></property>//引入另一个bean
</bean>
3.map注入
<bean id="user" class="com.baidu.test.User">
<property name="name" value="uuu"></property>
<property name="age" value="15"></property>
</bean>
<bean id="UserService" class="com.baidu.test.UserServiceImp">
<property name="name" value="uu">
</property>
<property name="list">
<list>
<value>10</value>
<value>张三</value>
<ref bean="user"/>
</list>
</property>
<property name="set">
<set>
<value>张三</value>
<ref bean="user"/>
</set>
</property>
<property name="map">
<map>
<entry key="1" value-ref="user"></entry>
<entry key="2" value="12"></entry>
</map>
</property>
</bean>
空间名称p和c
引入schma
xmlns:c="http://www.springframework.org/schema/c"
xmlns:p="http://www.springframework.org/schema/p"
首先它们不是真正的名称空间,是虚拟的。它是嵌入到 spring 内核中的。
使用 p 名称空间可以解决我们 setter 注入时<property>简化
使用 c 名称空间可以解决我们构造器注入时<constructor-arg>简化
applicationContext.xml
p名称空间 --------- setter注入
<bean id="user" class="com.baidu.test.User">
<property name="name" value="uuu"></property>
<property name="age" value="15"></property>
</bean>
<bean id="UserService" class="com.baidu.test.UserServiceImp" p:name="uu" p:u-ref="user" >
</bean>
c名称空间------- 构造器注入
<bean id="UserService" class="com.baidu.test.UserServiceImp" c:name="uu" c:u-ref="user" > </bean>
SPEL(spring expression language) spring 3.0版本以后
它类似于 ognl 或 el 表达式,它可以提供在程序运行时构造复杂表达式来完成对象属性存储
及方法调用等。
Spel 表达式的格式 #{表达式}
applicationContext.xml
1.完成bean之间的注入
<bean id="user" class="com.baidu.test.User">
<property name="name" value="uuu"></property>
<property name="age" value="15"></property>
</bean>
<bean id="UserService" class="com.baidu.test.UserServiceImp">
<property name="name" value="uu"></property>
<!-- <property name="u" ref="user"></property>->
<property name="u" value="#{user}"></property>替代上面的ref值(完成bean之间的注入)
</bean>
2.支持属性调用和即方法调用
<bean id="user" class="com.baidu.test.User">
<property name="name" value="uuu"></property>
<property name="age" value="15"></property>
</bean>
<bean id="user1" class="com.baidu.test.User">
<property name="name" value="uuu"></property>
<property name="age" value="#{user.getAge()+5}"></property>
</bean>
<bean id="UserService" class="com.baidu.test.UserServiceImp">
<property name="name" value="uu"></property>
<property name="u" value="#{user1}"></property>
</bean>
spring配置Bean的更多相关文章
- spring 配置bean
Main(测试方法) public class Main { public static void main(String[] args) { //1.创建Spring 的IOC容器对象: //spr ...
- Spring配置bean的详细知识
在Spring中配置bean的一些细节.具体信息请参考下面的代码及注释 applicationContext.xml文件 <?xml version="1.0" encodi ...
- Spring -- 配置bean的三种方法
配置通过静态工厂方法创建的bean public class StaticBookFactory { //静态工厂方法: public static Book getBook(String bookN ...
- Spring配置Bean,为属性赋值
SayHello的实体类: package com.langchao; /** * @ClassName: SayHello * @description: * @author: ZhangYawei ...
- Spring(十):Spring配置Bean(三)Bean的作用域、使用外部属性文件
Bean的作用域: 支持四种配置,分别是singleton,prototype,request,session. singleton 默认情况下在spring confinguration xml文件 ...
- Spring(九):Spring配置Bean(二)自动装配的模式、Bean之间的关系
XML配置里的Bean自动装配 Spring IOC容器可以自动装配Bean,需要做的仅仅是在<bean>的autowire属性里指定自动装配的模式,模式包含:byType,byName, ...
- Spring(八):Spring配置Bean(一)BeanFactory&ApplicationContext概述、依赖注入的方式、注入属性值细节
在Spring的IOC容器里配置Bean 配置Bean形式:基于xml文件方式.基于注解的方式 在xml文件中通过bean节点配置bean: <?xml version="1.0&qu ...
- spring 配置bean的方法及依赖注入发方式
Bean 的配置方式:通过全类名(反射).通过工厂方法(静态工厂方法 & 实例工厂方法).FactoryBean 这里依据全类名配置bean <bean id="helloWo ...
- Spring入门第二课:Spring配置Bean的细节
1.配置bean的作用域: 通过配置scope属性可以bean的作用域,参数有 prototype.request.session.singleton. 1)singleton为单例,IoC容器只会创 ...
- spring 配置bean-自己主动装配
版权声明:本文为博主原创文章,未经博主同意不得转载. https://blog.csdn.net/qilixiang012/article/details/28260477 概要:(蓝色为本节所讲) ...
随机推荐
- Java泛型:List<?>与List的区别
为什么说List<?>是type-safe而List不是type-safe的? 1.List<?> compiler看到了你使用了wildcard ?,那么相当于你对compi ...
- hdu 1509 & hdu 1873 & hdu 1896 (基础优先队列)
http://acm.hdu.edu.cn/showproblem.php?pid=1509 裸的优先队列的应用,输入PUT的时候输入名字,值和优先值进队列,输入GRT的时候输出优先值小的名字和对应的 ...
- 迈科DPI和运营商合作比较多
业界领先的DPI/DFI解决方案提供商 专注网络流量数据和应用性能数据的分析优化 业界领先的DPI/DFI解决方案提供商 专注网络流量数据和应用性能数据的分析优化 Previous Next DP ...
- *jQuery选择器总结(原创:最全、最系统、实例展示)
jquery选择器包括四部分:一.基本选择器二.层次选择器三.过滤选择器四.表单元素选择器 一.基本选择器1.ID选择器:$('#myDiv');2.类选择器:$('.className');3.元素 ...
- 使用VNC连接管理VPS
本文基于:Kvm+Windows2008 VPS+VNCviewer 有时候遇上IP没设置好,IP被封,调整磁盘,重置windows系统密码等等使用基于VNC的控制台对VPS进行操作是非常方便的. 有 ...
- UVA-1364.Knights of the Round Table 无向图BCC
题目链接:https://vjudge.net/problem/UVA-1364 题意:有n个人参加会议,互相憎恨的人不能坐在相邻的位置,并且每个会议参加的人数必须是奇数,求有多少个人不能参加任何一个 ...
- HTML的基本知识点
<!DOCTYPE HTML> <html> <body> <video width="320" height="240&quo ...
- sql求倒数第二大的数,效率不高,但写法新颖
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.T ...
- openssl pem密钥文件rsa加密解密例子
准备工作 命令行加密解密,用与比对代码中的算法和命令行的算法是否一致 C:\openssl_test>openssl rsautl -encrypt -in data.txt -inkey pu ...
- applicationContext-common.xml]; nested exception is java.lang.NoClassDefFoundError: org/w3c/dom/ElementTraversal
14:59:16,747 ERROR ContextLoader:350 - Context initialization failedorg.springframework.beans.factor ...