struts2 奇怪的Action警告 博客分类: Struts2 jsonStrutsServletApacheWeb
程序员文章站
2024-02-19 20:42:16
...
不知道大家有没有遇到在使用表单的时候,有时候会出一个莫名其妙的警告:
2008-1-6 21:14:47 org.apache.struts2.components.Form evaluateExtraParamsServletRequest
警告: No configuration found for the specified action: '/LoginAction.action' in namespace: '/'. Form action defaulting to 'action' attribute's literal value.
登录的时候,要表单提交到Action:LoginAction.action, 结果却出了这个警告,暂时没明白为什么,因为程序不影响正常使用。但总有解决的办法吧。
以下写法均会出这个警告
<s:form action="/LoginAction" method="post">
<s:form action="/LoginAction.action" method="post">
<s:form action="LoginAction.action" method="post">
正确的写法只有:
<s:form action="LoginAction" method="post">
如果有明白为什么的,希望能留个言。
推荐阅读
-
struts2 奇怪的Action警告 博客分类: Struts2 jsonStrutsServletApacheWeb
-
Struts2的第一个入门实例(三)--Struts2与Guice整合 博客分类: Struts2 StrutsSpringGoogleXMLWeb
-
Struts2的第一个入门实例(三)--Struts2与Guice整合 博客分类: Struts2 StrutsSpringGoogleXMLWeb
-
Struts2框架的struts.properties文件详解 博客分类: 开源技术 Struts框架velocitySpringApache
-
Struts2框架的struts.properties文件详解 博客分类: 开源技术 Struts框架velocitySpringApache
-
Struts2的result结果类型 博客分类: 开源技术 JSPfreemarkerJavavelocityStruts
-
Struts2中Action的注解范例 博客分类: 开源技术 StrutsApacheJSPXMLWeb
-
Struts2中Action的注解范例 博客分类: 开源技术 StrutsApacheJSPXMLWeb
-
Struts2的result结果类型 博客分类: 开源技术 JSPfreemarkerJavavelocityStruts
-
Struts要用的jar 博客分类: Struts2 StrutsApache