使用struts2 <s:form>标签警告



初学struts2,用到Struts2标签时 遇到如下警告

</pre>警告: No configuration found for the specified action: 'test1' in namespace: ''. Form action defaulting to 'action' attribute's literal value.2016-10-26 17:45:42 org.apache.struts2.components.ServletUrlRenderer warn警告: No configuration found for the specified action: 'test1' in namespace: ''. Form action defaulting to 'action' attribute's literal value.<p></p><p></p><p>Struts.xml文件</p><p></p><pre name="code" class="java"><?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC
	"-//Apache Software Foundation//DTD Struts Configuration 2.3//EN"
	"http://struts.apache.org/dtds/struts-2.3.dtd">
<struts>
    <package name="default" namespace="/" extends="struts-default">
    	<action name="test1" class="action.TestAction1">
    		<result name="success">/success.jsp</result>
    	</action>
    </package>
</struts>

index.jsp文件

<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
<%@ taglib prefix="s" uri="/struts-tags" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <body>
    <s:form action="test1" method="post">
    	name:<s:textfield name="user.name"></s:textfield>
    	password:<s:textfield name="user.password"></s:textfield>
    	<s:submit value="login"></s:submit>
    </s:form>
  </body>
</html>


在网上查了一下 解决方案是 在<s:form>标签里添加 namespace="/"  要和配置文件里的namespace一致才不会有这种警告

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值