Spring几个问题解决办法

来源:互联网 发布:sound track软件 编辑:程序博客网 时间:2024/06/01 08:58
1、spring framework 4.02最新版下载地址:

http://repo.springsource.org/libs-release-local/org/springframework/spring 

2、Attribute 'singleton' is not allowed to appear in element 'bean' 问题:
Spring 1.*
<bean id="hibernateSessionFactory" class="org.hibernate.admin.component.HibernateSessionFactory" init-method="init" destroy-method="dispose" singleton="true">
Spring 2.0以上:
spring-beans-2.0.dtd/xsd does not support singleton="true"/"false" anymore. Use scope="singleton/"prototype" instead!
<bean id="hibernateSessionFactory" class="org.hibernate.admin.component.HibernateSessionFactory" init-method="init" destroy-method="dispose" scope="singleton">

3、struts2与spring整合时,报空指针NullPointerException异常的解决:
在spring配置文件中对于action的配置,假设id是useraction,那么在struts.xml中,不应该还是像以前单独用struts时那样,而是将在struts.xml中action的class=useraction。也就是:将struts.xml中的action的class属性,由class名改为Spring中定义的bean的id名。 
applicationContext.xml:
<bean id="login" class="com.action.LoginAction" scope="singleton"> 
      <property name="log" ref="loginBusiness"/>
</bean> 
struts.xml :
<action name="Login" class="login"> <!-- com.action.LoginAction -->
            <result>/loginResult.jsp</result>
            <result name="input">/login.jsp</result>
  </action>

4、Cannot locate the chosen ObjectFactory implementation解决
添加struts2-spring-plugin-2.3.15.3.jar,
把struts.xml配置中的    <constant name="struts.objectFactory" value="spring" />
改成   <constant name="com.opensymphony.xwork2.ObjectFactory" value="spring" />
0 0
原创粉丝点击