我正在使用struts2验证框架,我只想在TestAction类中验证test()方法,这里是我的代码和配置:
@Namespace(value = "/")
@Result(name="input", location="test_input.jsp")
public class TestAction
{
private String name;
public String getName()
{
return name;
}
public void setName(String name)
{
this.name = name;
}
@Action(value = "test", results = { @Result(name = "success", location = "test.jsp")})
public String test() throws Exception
{
return "success";
}
@Action(value = "show", results = { @Result(name = "success", location = "test_input.jsp")})
public String show() throws Exception
{
return "success";
}
}
test_input.jsp:
<body>
<s:fielderror></s:fielderror>
<s:form action="test.do" theme="xhtml">
<s:textfield name="name" label="name"></s:textfield>
<s:submit value="submit"></s:submit>
</s:form>
</body>
test.jsp的:
<body>
success
<s:debug></s:debug>
</body>
TestAction试验validation.xml中:
<validators>
<field name="name">
<field-validator type="requiredstring">
<message>name is required.</message>
</field-validator>
</field>
</validators>
TestAction.class和TestAction-test-validation.xml位于同一个包中。
struts.xml中:
<struts>
<constant name="struts.enable.DynamicMethodInvocation" value="true" />
<constant name="struts.devMode" value="true" />
<constant name="struts.ui.theme" value="simple" />
<constant name="struts.ognl.allowStaticMethodAccess" value="true" />
<constant name="struts.action.extension" value="do" />
<constant name="struts.objectFactory" value="spring" />
<constant name="struts.convention.result.path" value="/" />
<include file="struts-default.xml"></include>
<package name="default" namespace="/" extends="struts-default">
<default-interceptor-ref name="defaultStack"></default-interceptor-ref>
<global-results>
<result name="error">error.jsp</result>
</global-results>
<global-exception-mappings>
<exception-mapping exception="java.lang.Exception"
result="error" />
</global-exception-mappings>
</package>
</struts>
的web.xml:
<filter>
<filter-name>struts2</filter-name>
<filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>*.do</url-pattern>
<dispatcher>REQUEST</dispatcher>
<dispatcher>FORWARD</dispatcher>
<dispatcher>INCLUDE</dispatcher>
</filter-mapping>
我开始通过浏览器访问show.do,输入和按钮出现,我没有在输入中输入任何内容,只需直接单击按钮,页面转到test.do并在页面中显示“成功”,我查看'debug'内容,其中没有任何错误消息。 但奇怪的是: [错误]名称:名称的验证错误是必需的。 以上消息是在eclipse控制台中打印的(我在eclipse中启动tomcat) 错误消息意味着testAction-test-validation.xml必须由struts2执行,但为什么它不会重定向到test_input.jsp?我已经定义了输入结果。
我的配置有问题或者我缺少其他配置吗?
有什么想法吗?
答案 0 :(得分:1)
尝试从您的操作中扩展ActionSupport
。
public class TestAction extends ActionSupport {
包含它总是一个好主意,通常没有理由不在项目的每个Action中扩展它。
P.S:这样你可以返回SUCCESS
而不是"success"
等