首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > JAVA > Java Web开发 >

struts2 提交后走过action但页面依然没用变

2013-12-11 
struts2 提交后走过action但页面仍然没用变如题使用struts22.3.1.2+spring3.0.5struts.xmlpackage name

struts2 提交后走过action但页面仍然没用变
如题
使用struts22.3.1.2+spring3.0.5
struts.xml
<package name="defaultTest" namespace="/" extends="struts-default">
<default-action-ref name="index"></default-action-ref>
<action name="index">
<result>pages/login/login.jsp</result>
<!-- <result>index.jsp</result> -->
</action>

<!-- 保存路线 -->
<action name="myway" class="saveMyWayAction">

</action>

<!-- 登陆 -->
<action name="loginMyway" class="loginAction">
<result name="loginSuccess">pages/frame/listWay.jsp</result>
<!-- <result name="list">list.jsp</result> -->
<result name="loginError">pages/login/error.jsp</result>
</action>
</package>
后台日志
14:48:11,140 DEBUG DataSourceUtils:110 - Fetching JDBC Connection from DataSource
14:48:11,140 DEBUG ServletDispatcherResult:68 - Forwarding to location pages/login/login.jsp
14:48:11,140 DEBUG InstantiatingNullHandler:68 - Entering nullPropertyValue [target=[com.opensymphony.xwork2.ActionSupport@bbf380, com.opensymphony.xwork2.DefaultTextProvider@19bb83d], property=struts]
14:48:11,140 DEBUG InstantiatingNullHandler:68 - Entering nullPropertyValue [target=[com.opensymphony.xwork2.ActionSupport@bbf380, com.opensymphony.xwork2.DefaultTextProvider@19bb83d], property=org]
14:48:11,140 DEBUG DataSourceUtils:332 - Returning JDBC Connection to DataSource
14:48:11,140 DEBUG I18nInterceptor:68 - after Locale=zh_CN
14:48:11,140 DEBUG I18nInterceptor:68 - intercept } 
14:48:11,140 DEBUG ServletDispatcherResult:68 - Forwarding to location pages/login/error.jsp
14:48:11,140 DEBUG InstantiatingNullHandler:68 - Entering nullPropertyValue [target=[com.MyWay.action.login.LoginAction@586b46, com.opensymphony.xwork2.DefaultTextProvider@19bb83d], property=struts]
14:48:11,140 DEBUG InstantiatingNullHandler:68 - Entering nullPropertyValue [target=[com.MyWay.action.login.LoginAction@586b46, com.opensymphony.xwork2.DefaultTextProvider@19bb83d], property=org]
14:48:11,140 DEBUG I18nInterceptor:68 - after Locale=zh_CN
14:48:11,140 DEBUG I18nInterceptor:68 - intercept } 
[解决办法]
action代码呢?
[解决办法]
没有return?
[解决办法]
楼主是异步提交的吗?如果是的话,那页面肯定是不会变的

如果不是异步提交的话,那楼主使用
response.getWriter().print();
的意义在哪?

热点排行