struts部分代码
type="org.springframework.web.struts.DelegatingActionProxy"
<!-- 加载所有的配置文件 -->
spring部分的action配置:
<bean name="/user" class="com.zz.struts.action.UserAction" singleton="false">
<property name="usersService" ref="usersService"></property>
</bean>
登录页面没有问题,输入用户名密码后报错.
信 息 无法找到Servlet action
描 述 没有所要求的资源(无法找到Servlet action)
个人猜想,有可能是spring部分出的问题,因为能出现登录页面,说明struts托管给spring是没有问题的..
期待大大解答..