Struts2项目中出现以下警告:虽然不影响程序得的运行,但看着很纠结~
警告: No configuration found for the specified action: '/admin_login' in namespace: ''. Form action defaulting to 'action' attribute's literal value.
2016-11-30 9:39:23 org.apache.struts2.components.ServletUrlRenderer warn警告: No configuration found for the specified action: '/admin_login' in namespace: ''. Form action defaulting to 'action' attribute's literal value.
原因分析:login.jspz中的Struts标签
<s:form action="/admin_login" method="post" theme="simple" >
<table border="1" align="center" cellpadding="5" cellspacing="0">
中的nanamespace=""默认为空 需修改如下
<s:form action="admin_login" method="post" theme="simple" namespace="/" >
<table border="1" align="center" cellpadding="5" cellspacing="0">
action中的“/” 得去掉,问题就解决了。
更多详解请点击:点击打开链接