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 概要:(蓝色为本节所讲) ...
随机推荐
- mysql --secure-file-priv is set to NULL.Operations related to importing and exporting data are disabled
--secure-file-priv is set to NULL. Operations related to importing and exporting data are disabledmy ...
- Navicat连接MySQL,出现2059 - authentication plugin 'caching_sha2_password'的解决方案
昨天当我把MySQL的安装程序下载并安装好,然后又下载了另外一个工具来使用它,该工具的名称是Navicat Premium,当我通过该工具连接MySQL Workbench的时候,无法连接,提示“20 ...
- sql server 查询不为空的字段
经常用,经常忘 select * from table where content is not null and datalength(content)<>0
- C# CashCode项目开发
如果不是因为这个项目,我可以一辈子都接触不到识币器,更不会知道CashCode是干啥的. 从项目开始,到CashCode机器到桌面上测试,中间在网上找过资料,也联系过北京的技术,他们发来的PDF让我看 ...
- Canvas绘图 (html5新增特性)
Canvas 使用<canvas>对象,需要设置属性:width,height.指定绘图的区域大小.在canvas标签前后出现的信息将在不支持<canvas>元素的浏览器中显示 ...
- iOS.Location-Based Service
基于位置区域的服务 1. 背景 Ref[1] 在iOS设备锁屏的状态下,App的icon会出现在屏幕的左下角. iOS 8 Feature: Location-based Lockscreen App ...
- git分支切换时的时间戳问题
1.为什么git仓库没有保留文件修改时的时间戳? 摘自:https://git.wiki.kernel.org/index.php/Git_FAQ#Why_isn.27t_Git_preservin ...
- UEFI、BIOS、Secure Boot的关系和知识介绍
从Windows 8操作系统时代开始,安装操作系统的方法也有了很大的改变,Windows 8采用了Secure Boot引导启动的方式,而不是过去Win XP和Win 7的Legacy启动方式,从 ...
- eclipse手动安装alibaba代码规范插件
如果你的开发环境无法访问外网,那么手动安装阿里巴巴的代码规范插件是一个不错的选择.另外,很多教程说该插件需要jdk1.8以上,我试了一下jdk1.7也是可以运行的,更低的版本就不知道了,貌似jdk1. ...
- POJ 3041.Asteroids 最小顶点覆盖
Asteroids Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 22905 Accepted: 12421 Descr ...