java

位置:IT落伍者 >> java >> 浏览文章

Spring工作原理探秘


发布日期:2023年08月16日
 
Spring工作原理探秘

Spring的哲学是在不影响Java对象的设计的情况下将Java对象加入到框架中 我们下面来看看Spring的工作原理看看Spring是如何做到不影响Java对象的

EJB的框架采用了一种侵略性(Invasive)的方法来设计对象它要求你在设计中加入符合EJB规范的代码一些轻量级的COP框架例如Avalon也要求对象设计时必须符合某种规范例如Serviceable接口这种做法是典型的Type 做法

这种设计思路要求Spring采用一种动态的灵活的方式来设计框架在Spring的工作原理中大量采用了反射首先Spring要解决的一个问题就是如何管理bean因为IOC的思想要求bean之间不能够直接调用而应该采用一种被动的方式进行协作所以bean的管理是Spring工作原理中的核心部分

反射和内省在代码的层次上思考问题有时候能够带来出人意料的灵活性但它的使用有时候也是一个哲学问题不论是在ORM设计还是在AOP设计上都出现了类似的问题究竟是使用反射还是使用代码生成

在Spring中处理这个问题的核心是在orgspringframeworkbeans包中而其中最为核心的部分则是BeanWrapperBeanWrapper顾名思义就是bean的包装器所以它的主要工作就是对任何一个bean进行属性(包括内嵌属性)的设置和方法的调用

BeanWrapper的默认实现类BeanWrapperImpl中虽然代码较长但完成的工作却是非常的集中的

BeanWrapper的深入研究

我们看看这个BeanWrapper是如何发挥运作的假设我们有两个bean

public class Company {

private String name;

private Employee managingDirector;

public String getName() {

return thisname;

}

public void setName(String name) {

thisname = name;

}

public Employee getManagingDirector() {

return thismanagingDirector;

}

public void setManagingDirector(Employee managingDirector) {

thismanagingDirector = managingDirector;

}

}

public class Employee {

private float salary;

public float getSalary() {

return salary;

}

public void setSalary(float salary) {

thissalary = salary;

}

}

然后我们使用BeanWrapper来调用这两个bean

Company c = new Company();

BeanWrapper bwComp = BeanWrapperImpl(c);

// setting the company name

bwCompsetPropertyValue(name Some Company Inc);

// can also be done like this:

PropertyValue v = new PropertyValue(name Some Company Inc);

bwCompsetPropertyValue(v);

// ok lets create the director and tie it to the company:

Employee jim = new Employee();

BeanWrapper bwJim = BeanWrapperImpl(jim);

bwJimsetPropertyValue(name Jim Stravinsky);

bwCompsetPropertyValue(managingDirector jim);

// retrieving the salary of the managingDirector through the company

Float salary = (Float)bwCompgetPropertyValue(managingDirectorsalary);

看起来麻烦了许多但是这样Spring就可以使用统一的方式来管理bean的属性了

Bean的制造工厂

有了对单个Bean的包装还需要对多个的bean进行管理在spring中把bean纳入到一个核心库中进行管理bean的生产有两种方法一种是一个bean产生多个实例一种是一个bean只产生一个实例如果对设计模式熟悉的话我们就会想到前者可以采用Prototype后者可以采用Singleton

注意到反射技术的使用使得我们不再像原始的工厂方法模式那样创建对象反射可以非常灵活的根据类的名称创建一个对象所以spring只使用了Prototype和Singleton这两个基本的模式

Spring正是这样处理的但是我们希望用户能够维护统一的接口而不需要关心当前的bean到底是Prototype产生的独立的bean还是Singleton产生的共享的bean所以在orgspringframeworkbeansfactory包中的BeanFactory定义了统一的getBean方法

JDBC再封装JDBC优雅的封装了底层的数据库但是JDBC仍然存在诸多的不变你需要编写大量的代码来完成CRUD操作而且JDBC无论是遇到什么样的问题都抛出一个SQLException这种做法在异常使用上被称为不完备的信息因为问题可能是很复杂的也许是数据库连接的问题也许是并发控制的问题也许只是SQL语句出错没有理由用一个简单的SQLException就搞定全部的问题了这种做法有些不负责任针对这两个问题Spring Framework提出了两种解决方法首先提供一个框架把JDBC应用中的获取连接异常处理释放等比较通用的操作全部都集中起来用户只需要提供特定的实现就OK了实现的具体细节采用的是模板方法举个例子在orgspringframeworkjdbcobject包中MappingSqlQuery类实现了将SQL查询映射为具体的业务对象JavaDoc中这样写到Reusable query in which concrete subclasses must implement the abstract mapRow(ResultSet int) method to convert each row of the JDBC ResultSet into an object 用户必须实现mapRow方法这是典型模板方法的应用我们拿一个具体的例子来看看

class UserQuery extends MappingSqlQuery {

public UserQuery(DataSource datasource) {

super(datasource SELECT * FROM PUB_USER_ADDRESS WHERE USER_ID = ?);

declareParameter(new SqlParameter(TypesNUMERIC));

compile();

}

// Map a result set row to a Java object

protected Object mapRow(ResultSet rs int rownum) throws SQLException {

User user = new User();

usersetId(rsgetLong(USER_ID));

usersetForename(rsgetString(FORENAME));

return user;

}

public User findUser(long id) {

// Use superclass convenience method to provide strong typing

return (User) findObject(id);

}

}

其次是第二个问题最麻烦的地方应该说是需要截住JDBC的异常然后判断异常的类型并重新抛出异常错误的问题可以通过连接来获取所以麻烦的是如何截获异常Spring 框架采用的方法是回调处理回调的类在Spring Framework中被称为template

JdbcTemplate template = new JdbcTemplate(dataSource);

final List names = new LinkedList();

templatequery(SELECT USERNAME FROM USER

new RowCallbackHandler() {

public void processRow(ResultSet rs) throws SQLException {

namesadd(rsgetString());

}

});

回调函数是一个匿名类其中也使用了模板方法异常的处理都在父类中完成了

层间松耦合

在开放源码界已经出现了大量的基于MVC的Web容器但是这些容器都仅限于Web的范围 不涉及Web层次后端的连接Spring作为一个整体性的框架定义了一种Web层和后端业务层的连接方式 这个思路仍然疏运图MVC的范畴但耦合更松散不依赖于具体的集成层次

public class GoogleSearchController

implements Controller {

private IGoogleSearchPort google;

private String googleKey;

public void setGoogle(IGoogleSearchPort google) {

thisgoogle = google;

}

public void setGoogleKey(String googleKey) {

thisgoogleKey = googleKey;

}

public ModelAndView handleRequest(

HttpServletRequest request HttpServletResponse response)

throws ServletException IOException {

String query = requestgetParameter(query);

GoogleSearchResult result =

// Google property definitions omitted

// Use google business object

googledoGoogleSearch(thisgoogleKey querystart maxResults filter r

estrict safeSearch lr ie oe);

return new ModelAndView(googleResults result result);

}

}

回调函数是一个匿名类其中也使用了模板方法异常的处理都在父类中完成了

上一篇:整合Hibernate3与JBOSS 3.2.X

下一篇:开源技术:在Eclipse中构建备忘单