Struts2 redirectAction转向时默认加pass的问题
2009-09-26 00:00:00 来源:WEB开发网项目中要转发action,我就用
Xml代码
<result name="success" type="redirectAction">my.action</result>
但是今天再用的时候发现一个莫名其名的问题,程序转向了一个不存在的url,如下:
原来应该是这样的:http://localhost:8080/focus/account/my.action
其中focus,是项目名,就是上下文路径,account是命名空间,my.action是我的action。
这样才是对的,可是今天的url却是http://localhost:8080/focus/pass/account/my.action!pass
由于根本不存在这样的url,就提示404错误。。
调试了很久才发现是加入了JCR170的问题,jcr170的bean文件不愤如下:
Xml代码
<bean id="jcrSessionFactory" class="org.springmodules.jcr.JcrSessionFactory">
<property name="repository" ref="repository"/>
<property name="credentials">
<bean class="javax.jcr.SimpleCredentials">
<constructor-arg index="0" value="bogus"/>
<!-- create the credentials using a bean factory -->
<constructor-arg index="1">
<bean factory-bean="password"
factory-method="toCharArray"/>
</constructor-arg>
</bean>
</property>
<!-- register some bogus namespaces -->
<!--
<property name="namespaces">
<props>
<prop key="foo">http://bar.com/jcr</prop>
<prop key="hocus">http://pocus.com/jcr</prop>
</props>
</property>
-->
<!-- register a simple listener
<property name="eventListeners">
<list>
<bean class="org.springmodules.jcr.EventListenerDefinition">
<property name="listener">
<bean class="org.springmodules.examples.jcr.DummyEventListener"/>
</property>
</bean>
</list>
</property>
-->
</bean>
<!-- create the password to return it as a char[] -->
<bean id="password" class="java.lang.String">
<constructor-arg index="0" value="pass"/>
</bean>
上面就是关键代码,id为password的值是pass,就是他跑到struts2的redirectAction里面!
目前具体原因不明,不过有解决方法,就是把
<!-- create the password to return it as a char[] -->
<bean id="password" class="java.lang.String">
<constructor-arg index="0" value="pass"/>
</bean>
注释掉,然后修改:
<constructor-arg index="1">
<bean factory-bean="password"
factory-method="toCharArray"/>
</constructor-arg>
为:
<constructor-arg index="1" value="pass"/>
就行了!!如果有知道原因的说一下,感激不尽!!
Tags:Struts redirectAction 转向
编辑录入:爽爽 [复制链接] [打 印]- ››StrutsTestCase 简化开发过程
- ››struts 中一些包的详解
- ››struts1与struts2的区别
- ››struts学习1
- ››struts-2.1.8.1+jquery-1.3.2+spring-framework-2...
- ››Struts优缺点及实施经验总结
- ››Struts优缺点剖析
- ››Struts2中的DMI
- ››Struts2入门介绍1 -- Struts2介绍及运行一个简单...
- ››Struts2.1.6--想用通配符,不容易
- ››Struts2 redirectAction转向时默认加pass的问题
- ››Struts 2.1.6 精简实例系列教程(3):新闻管理Mode...
更多精彩
赞助商链接