- 浏览: 117911 次
- 性别:
- 来自: 福建
文章分类
最新评论
-
wenbing2610:
其实用Struts实现图片上传比用Servlet实现容易多了。 ...
Struts2文件上传深入FileUploadInterceptor -
i_feng:
public class uploadImageAction ...
Struts2文件上传深入FileUploadInterceptor -
wenbing2610:
...
ognl.MethodFailedException
IOC,直观地讲,就是容器控制程序之间的关系,而非传统实现中,由程序代码直接操控。这也就是所谓“控制反转”的概念所在。控制权由应用代码中转到了外部容器,控制权的转移是所谓反转。IoC还有另外一个名字——“依赖注入(Dependency Injection)”。从名字上理解,所谓依赖注入,即组件之间的依赖关系由容器在运行期决定,形象地说,即由容器动态地将某种依赖关系注入到组件之中。
下面我根据spring源码 简单实现自己的依赖注入 通过xml形式配置 在对象中获取xml文件 获取定义好的bean 从而对bean对应的class 实现实例化 使用接口形式
接口
public interface PersonDao { public void add(); }
实现类
- package cn.leam.dao.impl;
- import cn.leam.dao.PersonDao;
- public class PersonDaoBean implements PersonDao {
- public void add(){
- System.out.println("执行add()方法");
- }
- }
package cn.leam.dao.impl; import cn.leam.dao.PersonDao; public class PersonDaoBean implements PersonDao { public void add(){ System.out.println("执行add()方法"); } }
服务接口
public interface PersonService { public void save(); }
服务实现类
- public class PersonServiceBean implements PersonService {
- private PersonDao personDao;
- public PersonDao getPersonDao() {
- return personDao;
- }
- public void setPersonDao(PersonDao personDao) {
- this.personDao = personDao;
- }
- public void save(){
- personDao.add();
- }
- }
public class PersonServiceBean implements PersonService { private PersonDao personDao; public PersonDao getPersonDao() { return personDao; } public void setPersonDao(PersonDao personDao) { this.personDao = personDao; } public void save(){ personDao.add(); } }
首先配置beans.xml 配置DAO,SERVICE实现类
- <?xml version="1.0" encoding="UTF-8"?>
- <beans xmlns="http://www.springframework.org/schema/beans"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://www.springframework.org/schema/beans
- http://www.springframework.org/schema/beans/spring-beans-2.5.xsd">
- <bean id="personDao" class="cn.leam.dao.impl.PersonDaoBean"></bean>
- <bean id="personService" class="cn.leam.service.impl.PersonServiceBean">
- <property name="personDao" ref="personDao"></property>
- </bean>
- </beans>
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd"> <bean id="personDao" class="cn.leam.dao.impl.PersonDaoBean"></bean> <bean id="personService" class="cn.leam.service.impl.PersonServiceBean"> <property name="personDao" ref="personDao"></property> </bean> </beans>
下面模拟spring对xml配置的类进行实例化
存放属性的对象
- public class prosDefinition {
- private String name;
- private String ref;
- public ProsDefinition(String name, String ref) {
- this.name = name;
- this.ref = ref;
- }
- public String getName() {
- return name;
- }
- public void setName(String name) {
- this.name = name;
- }
- public String getRef() {
- return ref;
- }
- public void setRef(String ref) {
- this.ref = ref;
- }
- }
public class prosDefinition { private String name; private String ref; public ProsDefinition(String name, String ref) { this.name = name; this.ref = ref; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getRef() { return ref; } public void setRef(String ref) { this.ref = ref; } }
存放bean的 对象
- public class Definition {
- private String id;
- private String className;
- private List<ProsDefinition> propertys = new ArrayList<ProsDefinition>();
- public Definition(String id, String className) {
- this.id = id;
- this.className = className;
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getClassName() {
- return className;
- }
- public void setClassName(String className) {
- this.className = className;
- }
- public List<PropertyDefinition> getPropertys() {
- return propertys;
- }
- public void setPropertys(List<PropertyDefinition> propertys) {
- this.propertys = propertys;
- }
- }
public class Definition { private String id; private String className; private List<ProsDefinition> propertys = new ArrayList<ProsDefinition>(); public Definition(String id, String className) { this.id = id; this.className = className; } public String getId() { return id; } public void setId(String id) { this.id = id; } public String getClassName() { return className; } public void setClassName(String className) { this.className = className; } public List<PropertyDefinition> getPropertys() { return propertys; } public void setPropertys(List<PropertyDefinition> propertys) { this.propertys = propertys; } }
这里是关键点 所有代码都在这里 使用dom4j 解析xml文件中的bean 并获取id和class 再判断元素中是否有引用元素对其一并获取出来存放才Map中 利用java反射一个一个进行实例化
- /**
- * 学习版容器
- *
- */
- public class LeamClassPathXMLApplicationContext {
- private List<Definition> beanDefines = new ArrayList<Definition>();
- private Map<String, Object> sigletons = new HashMap<String, Object>();
- public LeamClassPathXMLApplicationContext(String filename){
- this.readXML(filename);
- this.instanceBeans();
- this.injectObject();
- }
- /**
- * 为bean对象的属性注入值
- */
- private void injectObject() {
- for(Definition beanDefinition : beanDefines){
- Object bean = sigletons.get(beanDefinition.getId());
- if(bean!=null){
- try {
- PropertyDescriptor[] ps = Introspector.getBeanInfo(bean.getClass())
- .getPropertyDescriptors();
- for(ProsDefinition propertyDefinition : beanDefinition.getPropertys()){
- for(PropertyDescriptor properdesc : ps){
- if(propertyDefinition.getName().equals(properdesc.getName())){
- Method setter = properdesc.getWriteMethod();
- //获取属性的setter方法 ,private
- if(setter!=null){
- Object value = sigletons.get(propertyDefinition.getRef());
- setter.invoke(bean, value);//把引用对象注入到属性
- }
- break;
- }
- }
- }
- } catch (Exception e) {
- }
- }
- }
- }
- /**
- * 完成bean的实例化
- */
- private void instanceBeans() {
- for(Definition beanDefinition : beanDefines){
- try {
- if(beanDefinition.getClassName()!=null && !"".
- equals(beanDefinition.getClassName().trim()))
- sigletons.put(beanDefinition.getId(),
- Class.forName(beanDefinition.getClassName()).newInstance());
- } catch (Exception e) {
- e.printStackTrace();
- }
- }
- }
- /**
- * 读取xml配置文件
- * @param filename
- */
- private void readXML(String filename) {
- SAXReader saxReader = new SAXReader();
- Document document=null;
- try{
- URL xmlpath = this.getClass().getClassLoader().getResource(filename);
- document = saxReader.read(xmlpath);
- Map<String,String> nsMap = new HashMap<String,String>();
- nsMap.put("ns","http://www.springframework.org/schema/beans");//加入命名空间
- //创建beans/bean查询路径
- XPath xsub = document.createXPath("//ns:beans/ns:bean");
- xsub.setNamespaceURIs(nsMap);//设置命名空间
- List<Element> beans = xsub.selectNodes(document);//获取文档下所有bean节点
- for(Element element: beans){
- String id = element.attributeValue("id");//获取id属性值
- String clazz = element.attributeValue("class"); //获取class属性值
- BeanDefinition beanDefine = new BeanDefinition(id, clazz);
- XPath propertysub = element.createXPath("ns:property");
- propertysub.setNamespaceURIs(nsMap);//设置命名空间
- List<Element> propertys = propertysub.selectNodes(element);
- for(Element property : propertys){
- //元素内部引用的属性也获取
- String propertyName = property.attributeValue("name");
- String propertyref = property.attributeValue("ref");
- ProsDefinition propertyDefinition =
- new ProsDefinition(propertyName, propertyref);
- beanDefine.getPropertys().add(propertyDefinition);
- }
- beanDefines.add(beanDefine);
- }
- }catch(Exception e){
- e.printStackTrace();
- }
- }
- /**
- * 获取bean实例
- * @param beanName
- * @return
- */
- public Object getBean(String beanName){
- return this.sigletons.get(beanName);
- }
- }
/** * 学习版容器 * */ public class LeamClassPathXMLApplicationContext { private List<Definition> beanDefines = new ArrayList<Definition>(); private Map<String, Object> sigletons = new HashMap<String, Object>(); public LeamClassPathXMLApplicationContext(String filename){ this.readXML(filename); this.instanceBeans(); this.injectObject(); } /** * 为bean对象的属性注入值 */ private void injectObject() { for(Definition beanDefinition : beanDefines){ Object bean = sigletons.get(beanDefinition.getId()); if(bean!=null){ try { PropertyDescriptor[] ps = Introspector.getBeanInfo(bean.getClass()) .getPropertyDescriptors(); for(ProsDefinition propertyDefinition : beanDefinition.getPropertys()){ for(PropertyDescriptor properdesc : ps){ if(propertyDefinition.getName().equals(properdesc.getName())){ Method setter = properdesc.getWriteMethod(); //获取属性的setter方法 ,private if(setter!=null){ Object value = sigletons.get(propertyDefinition.getRef()); setter.invoke(bean, value);//把引用对象注入到属性 } break; } } } } catch (Exception e) { } } } } /** * 完成bean的实例化 */ private void instanceBeans() { for(Definition beanDefinition : beanDefines){ try { if(beanDefinition.getClassName()!=null && !"". equals(beanDefinition.getClassName().trim())) sigletons.put(beanDefinition.getId(), Class.forName(beanDefinition.getClassName()).newInstance()); } catch (Exception e) { e.printStackTrace(); } } } /** * 读取xml配置文件 * @param filename */ private void readXML(String filename) { SAXReader saxReader = new SAXReader(); Document document=null; try{ URL xmlpath = this.getClass().getClassLoader().getResource(filename); document = saxReader.read(xmlpath); Map<String,String> nsMap = new HashMap<String,String>(); nsMap.put("ns","http://www.springframework.org/schema/beans");//加入命名空间 //创建beans/bean查询路径 XPath xsub = document.createXPath("//ns:beans/ns:bean"); xsub.setNamespaceURIs(nsMap);//设置命名空间 List<Element> beans = xsub.selectNodes(document);//获取文档下所有bean节点 for(Element element: beans){ String id = element.attributeValue("id");//获取id属性值 String clazz = element.attributeValue("class"); //获取class属性值 BeanDefinition beanDefine = new BeanDefinition(id, clazz); XPath propertysub = element.createXPath("ns:property"); propertysub.setNamespaceURIs(nsMap);//设置命名空间 List<Element> propertys = propertysub.selectNodes(element); for(Element property : propertys){ //元素内部引用的属性也获取 String propertyName = property.attributeValue("name"); String propertyref = property.attributeValue("ref"); ProsDefinition propertyDefinition = new ProsDefinition(propertyName, propertyref); beanDefine.getPropertys().add(propertyDefinition); } beanDefines.add(beanDefine); } }catch(Exception e){ e.printStackTrace(); } } /** * 获取bean实例 * @param beanName * @return */ public Object getBean(String beanName){ return this.sigletons.get(beanName); } }
上面简单的依赖注入 基本完成 当然spring的源码会管家复杂 我们主要是理解其思想 下面我们来测试
- public class SpringTest {
- @BeforeClass
- public static void setUpBeforeClass() throws Exception {
- }
- @Test public void instanceSpring(){
- LeamClassPathXMLApplicationContext ctx = new
- LeamClassPathXMLApplicationContext("beans.xml");
- PersonService personService = (PersonService)ctx.getBean("personService");
- personService.save();
- }
- }
public class SpringTest { @BeforeClass public static void setUpBeforeClass() throws Exception { } @Test public void instanceSpring(){ LeamClassPathXMLApplicationContext ctx = new LeamClassPathXMLApplicationContext("beans.xml"); PersonService personService = (PersonService)ctx.getBean("personService"); personService.save(); } }
最终输出 说明实例化成功
执行add()方法
发表评论
-
CSS样式表的overflow属性
2015-01-02 19:22 28一、滚动条样式overflow ... -
jrebel运用
2014-07-13 22:00 1187JRebel热部署 ... -
JPA执行原生SQL截断Char类型问题
2014-05-24 21:39 1185在JPA的API中执行原生 ... -
JPA基本数据类型映射
2014-05-24 21:06 3901/** ... -
spring定时器配置
2014-03-18 21:36 690创建测试类: ... -
The Struts dispatcher cannot be found
2013-11-03 18:48 650运行环境:struts2环境中访 ... -
JasperException
2013-09-15 20:41 1014JasperException异常: ... -
equal symbol expected
2013-09-15 20:08 1180equal symbol ... -
Hibernate主键生成器
2013-09-12 21:11 787... -
Criterion和Criteria
2013-09-08 16:00 1943Hibernate Criter ... -
getHibernateTemplate用法
2013-09-08 15:02 580HibernateTemplate提供的方法 ... -
JS中页面跳转
2013-09-08 14:01 652<html><head><t ... -
GridPanel详解
2013-03-10 10:45 10321、Ext.grid.GridPanel ... -
tomcat内存溢出
2013-03-04 20:26 723在使用Java程序从数据库中查询大量的数据或 ... -
History Object
2013-01-07 21:06 750history 对象是window 对象的另一个子 ... -
Write to programmer
2012-12-29 20:16 853很多的java初级程序员对自己没有一个明确的方 ... -
EL语言
2012-09-27 22:08 891EL的前世今生: ... -
JSTL标签的使用
2012-09-27 22:00 805JSP 标准标记库( Standard Tag Library ... -
使用IBATIS防止sql注入
2012-08-26 21:17 1597对于ibaits参数引用可以使用#和$两 ... -
IBATIS动态SQL标签用法
2012-08-26 21:04 12451、动态SQL片段通过SQL片 ...
相关推荐
SpringIOC是Spring Framework中的核心组件之一,负责管理应用程序中的对象、依赖关系和生命周期。 在 Spring IOC 中,对象的创建和管理是通过 BeanFactory 或 ApplicationContext 实现的。BeanFactory 是 Spring ...
Spring 框架是Java开发中的核心框架,它主要由两...Spring的IOC和AOP机制使得开发者能够更专注于业务逻辑,而不是繁琐的依赖管理和横切关注点。了解和掌握这两个核心概念,对于高效地使用Spring框架进行开发至关重要。
通过这些机制,Spring的IOC和AOP不仅简化了对象的管理和关注点的分离,还提升了代码的可读性和可维护性。在实际项目中,结合使用Spring的IOC和AOP,我们可以构建出松散耦合、易于扩展的应用系统。例如,通过AOP处理...
Spring IoC 加载流程讲解 在本节中,我们将对 Spring IoC 加载流程进行详细的讲解,并探讨 IoC 思想和...通过了解 Spring IoC 加载流程,我们可以更好地理解 Spring 的核心机制,并更好地使用 Spring 框架进行开发。
Spring IOC,全称Inversion of Control,即“控制反转”,是Spring框架的核心特性之一。在传统的Java应用程序中,对象的创建和...同时,这样的测试也有助于理解和学习Spring IOC的工作机制,提升对Spring框架的理解。
标题 "Spring IOC" 描述了我们讨论的核心主题——Spring 框架中的依赖注入(Inversion of Control,简称 IOC)机制。Spring 是一个广泛应用的 Java 应用开发框架,其核心特性之一就是IOC,它极大地简化了软件组件...
IOC的设计模式是实现控制反转的机制,具体来说是一种称为“依赖注入”(Dependency Injection,简称DI)的模式。依赖注入是在运行期,由外部容器动态地将依赖关系注入到组件中。主要有以下几种依赖注入方式: 1. ...
Spring通过反射机制来实现这一过程,比如在上述的`TestIOC`例子中,Spring能够根据类名动态地创建对象,并通过setter方法注入属性值,实现了对象的实例化和配置。 **依赖注入(DI)**有多种实现方式,包括构造器...
简洁版的spring ioc自行实现,不到10个类,描述了加载机制,是研究IOC DI的好材料,能够了解IOC原理。目标是了解基本原理,所以没考虑循环引用的情况 完整的ECLIPSE工程,直接导入就可使用。 里面有测试例子,单步...
标题《Spring IoC源码深度剖析开源架构源码2021.pdf》和描述《Spring IoC源码深度剖析开源架构源码2021.pdf》表明该文档主要面向于分析Spring框架中控制反转(IoC)容器的核心源码,解析和理解其内部的工作机制及...
Java反射和Spring IOC是Java开发中的两个重要概念,它们在构建灵活、可扩展的应用程序时起着关键作用。本文将深入探讨这两个主题,并提供相关的学习资源。 首先,让我们了解一下Java反射。Java反射机制是Java语言的...
综上所述,Spring的IOC容器是通过控制反转和依赖注入实现的一种高级组件管理机制,它极大地简化了Java应用的复杂性,促进了松耦合和可测试性的提升。理解并熟练运用Spring IOC容器是掌握Spring框架的关键。通过阅读...
本篇将深入探讨如何通过注解方式来模拟Spring的这两种机制,帮助你理解其底层原理。 ### 1. 依赖注入(IoC) 依赖注入是Spring框架的核心特性之一,它通过反转对象创建和管理的控制权,使得应用程序组件之间的耦合...
《深入理解Spring IOC+MVC:从零构建自己的框架》 在软件开发领域,Spring框架因其强大的功能和灵活性而备受推崇,特别是其核心的控制反转(IOC)和模型视图控制器(MVC)设计模式。本文将通过分析并实现一个简化版...
### Spring IoC源码解读 #### 一、Spring IoC 容器概述 Spring框架的核心功能之一便是依赖注入(Dependency Injection, DI),而这一功能主要通过IoC容器来实现。在Spring框架中,IoC容器负责管理应用对象的生命...
接下来,Spring的DI机制会在运行时自动装配这些bean。当创建`exampleBean`时,Spring会查找并注入`dependencyBean`的实例,而无需在`ExampleClass`的构造函数或初始化方法中显式地创建它。这使得代码更简洁,更易于...
Spring的IoC容器和事务管理机制为Java开发者提供了一套完整的解决方案,极大地简化了应用开发过程。通过对容器初始化流程及关键组件的理解,可以帮助开发者更好地利用Spring框架的各项功能,提升应用的性能和稳定性...
5. **生命周期管理**: Spring容器还提供了对Bean生命周期的管理,包括初始化回调、销毁回调、Bean的后处理器等机制,允许开发者在特定阶段插入自定义逻辑。 6. **AOP代理**: Spring的IOC容器与AOP框架紧密集成,...
在本文中,我们将深入探讨Spring框架的核心特性——控制反转(Inversion of Control,简称IoC)和依赖注入(Dependency Injection,简称DI),以及如何通过注解配置和Maven项目构建来实现这一概念。Spring框架是Java...
1. **配置文件解析**:在`springIOC_0602`项目中,我们有一个XML配置文件,它定义了bean的声明和它们的依赖。JDOM库被用来读取这个文件,解析bean的定义,包括bean的类名、属性、依赖等。 2. **Bean的创建**:解析...