spring对struts2支持问题

系统 1653 0

    存在不如意的地方就意味着存在bug。

 

    当我们像摆弄机器一般去利用这个那个框架的时候,很快,就陷入无休止的试验,试验这个那个的功能。创新简直和我们绝缘。

    随便抱怨一句。

    最近,公司同事利用spring+struts2做个工具,涉及到隐私,故我把代码简单化(普世的原则啊)。

    public class LoginAction extends ActionSupport {

	/**
	 * 
	 */
	private static final long serialVersionUID = 1L;
	
	private FriendService service;
	
	private Friend friend;

	public FriendService getService() {
		return service;
	}

	public void setService(FriendService service) {
		this.service = service;
	}

	public Friend getFriend() {
		return friend;
	}

	public void setFriend(Friend friend) {
		this.friend = friend;
	}

	public String execute(){
		System.out.println(service);
		boolean result = service.check(friend);
		if(result){
			return SUCCESS;
//			System.out.println(result);
		}
		return INPUT;
	}
}
  

 

 

   这是一个action,非常俗气的action,它有一个属性service,很显然接下来我们会利用spring的ioc方式来获得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.0.xsd">
  
  	<bean id="dao1" class="com.nt.dao.impl.FriendDaoImpl">
  	
  	</bean>
  
	<bean id="service1" class="com.nt.service.impl.FriendServiceImpl"> 
	<property name="dao" ref="dao1"></property>
	</bean>
	
	<bean id="login" class="com.nt.action.LoginAction">
		<property name="service" ref="service1"></property>
	</bean>
 
</beans>
  

 

    如果,稍加注意的话,大家会发现引用的FriendServiceImpl的id是service1。

   对,这就是问题所在,同事在debug模式下运行程序发现得到的service是 null。

    但是,他测试了许多篇,翻阅了什么李刚的书,还有springinaction之类,都没发现问题的解决方式。

 

   后来,我建议,他把FriendServiceImpl的id改为service。

   问题终于解决!

 

  

spring对struts2支持问题


更多文章、技术交流、商务合作、联系博主

微信扫码或搜索:z360901061

微信扫一扫加我为好友

QQ号联系: 360901061

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描下面二维码支持博主2元、5元、10元、20元等您想捐的金额吧,狠狠点击下面给点支持吧,站长非常感激您!手机微信长按不能支付解决办法:请将微信支付二维码保存到相册,切换到微信,然后点击微信右上角扫一扫功能,选择支付二维码完成支付。

【本文对您有帮助就好】

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描上面二维码支持博主2元、5元、10元、自定义金额等您想捐的金额吧,站长会非常 感谢您的哦!!!

发表我的评论
最新评论 总共0条评论