SSH整合(二)——利用Spring来装配Action类



        在上篇文章(SSH整合(一)——直接获取ApplicationContext)中,Action类中通过获取ApplicationContext对象,调用getBean方法来实例化bean类,这种方法将Action类与Spring的绑定装配JavaBean绑定的过紧,大大增加了他们的耦合度。如果装配文件的内容有变化,很可能要修改Action类的代码。


     所以我们将装配Action类及其属性的方法也放到Spring中。


一,由Spring创建Action对象


      例如,action代码如下:

        

package net.blogjava.nokiaguy.models;

public class SecondSSHAction {
	private MapService service;
	public void setService(MapService service) {
		this.service = service;
	}
	public String execute(){
		System.out.println(service.validate("lhc"));
		return null;
	}
	
}

 

  其中MapService是一个业务逻辑Bean。


  在Spring中配置这个类装配:

   




	
		
	


  在Struts.xml中配置此Action:


	
		
 

优点:

充分利用了SpringIOC的特性,比较完美的将Action类与ApplicationContext对象进行解耦。

 

缺点:

这种方法需要同时在Spring的配置文件中和struts.xml文件中配置同一个Action类,这将会造成代码臃肿,难于维护。


二,自动装配Action对象的属性


     在这种配置中,我们只需要配置struts.xml文件。

         例如:

 


  

         

    当我们在浏览器中访问 http://localhost:8099/SSHDemo02/thirdssh.action 的时候,因为之前我们配置过:




	
		
		
	


    在装配ThirdSSHAction的mapService属性的时候,会使用这里的bean来自动装配。

       这种方式将配置两个配置文件的方式改为只维护一个配置文件,并且在Spring中配置的组件可以供多个Action使用。








你可能感兴趣的:(SSH整合(二)——利用Spring来装配Action类)