欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

SSH搭建jar包配置文件问题

程序员文章站 2022-03-02 18:08:49
...
今天搭了一个struts2+spring2+hibernate3环境

struts.xml里的配置

<package name="default" extends="struts-default" namespace="">
        <action name="user" class="userAction" method="saveuser">
                   <result name="success">userlist.jsp</result>
        </action>
</package>

applicationContext.xml的配置

<bean id="userAction" class="com.lei.action.UserAction">
    <property name="userManager">
             <ref bean="userManager"/>
    </property>
</bean>

问题出现了,当我把class的交给spring管理的时候,总是报异常Action class [loginAction] not found - action - file:/盘符:/apache-tomcat-5.5.25/webapps/项目名称/WEB-INF/classes/struts.xml:8:44,上网找了好久也没有得到解决办法,也许是因为大家犯得错误和我灰谎伞?/p> 

我的struts.propertes的配置也都正常

struts.objectFactory=spring
struts.locale=zh_CN
struts.i18n.encoding=GBK

弄了几个小时之后我终于得到了解决办法

在struts.xml中还要加入这么一个bean

<bean type="com.opensymphony.xwork2.ObjectFactory" name="spring" 
         class="org.apache.struts2.spring.StrutsSpringObjectFactory" />

这个bean要放在package的外面

这个是把struts(struts.xml)和spring(applicationContext.xml)关联起来的关键

我一开始在属性文件里直接这样写struts.objectFactory=spring

是报错误的

后来改成struts.objectFactory=com.opensymphony.xwork2.ObjectFactory

也不可以

只有在<bean type="com.opensymphony.xwork2.ObjectFactory" name="spring" 
         class="org.apache.struts2.spring.StrutsSpringObjectFactory" />配置了这个bean后

再必须加上struts.objectFactory=spring才可以

或者在struts.xml加上<constant name="struts.objectFactory" value="spring" />也可以,这个大家不用我解释了吧,可能都比我了解