我已经使用 struts 2.0 开发了一个应用程序。在服务器日志上,我收到了某些警告行。我想修复这个警告,但我做不到。
[WARN] No configuration found for the specified action: '/' in namespace: ''. Form action defaulting to 'action' attribute's literal value.
在我的 struts.xml 文件中,我有这样的东西
<struts>
<constant name="struts.devMode" value="true" />
<package name="basicstruts2" extends="struts-default" namespace="/">
<global-results>
<result name="error">/error.jsp </result>
</global-results>
<action name="Login" class="com.login.LoginAction">
<result name="input">/login.jsp</result>
<result name="success">/dashboard.jsp</result>
</action>
</package>
</struts>
在 jsp 页面中,我在单击按钮时调用以下 javascript 函数
function submitloginform()
{
document.loginform.action = "Login.action";
document.loginform.submit();
}
任何人都可以帮我解决这个问题。