gpt4 book ai didi

java - Spring 2.5 表单验证在 validator 实现中发现的错误不会更新 View
tags

转载 作者:行者123 更新时间:2023-12-01 12:55:41 25 4
gpt4 key购买 nike

作为引用,我一直在很大程度上使用这个: http://www.mkyong.com/spring-mvc/spring-mvc-form-handling-example/

基本上,我有一个名为 EJournalValidator.java 的类:

package com.blah.blah.validator;

import org.springframework.validation.Errors;
import org.springframework.validation.ValidationUtils;
import org.springframework.validation.Validator;
import com.blah.blah.EJournalForm;

public class EJournalValidator implements Validator{

public boolean supports(Class clazz) {
return EJournalForm.class.isAssignableFrom(clazz);
}

public void validate(Object target, Errors errors) {
ValidationUtils.rejectIfEmptyOrWhitespace(errors, "strStartDate",
"ejournal.strStartDate", "Field name is required.");
}

}

它映射到我的 servlet.xml 中的 Controller ,其中包含我的 spring 2.5 beans 列表中的一些重要方面:

<bean name="/app/eJournal.html" class="com.blah.blah.EJournalController">
<property name="formView" value="/app/eJournal"/>
<property name="validator">
<bean class="com.blah.blah.EJournalValidator" />
</property>
</bean>
<bean name="/app/eJournalResult.html" class="com.blah.blah.EJournalResultController"></bean>

<bean id="messageSource" class="org.springframework.context.support.ReloadableResourceBundleMessageSource">
<property name="basenames">
<list>
<value>/WEB-INF/messages/message</value>
</list>
</property>
</bean>

<bean id="localeResolver" class="org.springframework.web.servlet.i18n.SessionLocaleResolver"/>

<bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="viewClass" value="org.springframework.web.servlet.view.JstlView"/>
<property name="prefix" value="/WEB-INF/jsp/"/>
<property name="suffix" value=".jsp"/>
</bean>

它验证我的表单中的搜索条件,由我们的模型 .java 文件和用于表单加载和提交的 Controller (对于我们来说 showForm() 和 handleRequest())表示。问题是,我的 View 似乎没有更新我的标签在 .jsp 中的位置:

<td><form:input id="strStartDate" path="strStartDate"/></td>
<td><form:errors path="strStartDate" cssClass="error" /></td>

不幸的是,即使我知道当我通过 EJournalValidator.java 文件中的断点为此字段提交 null 时,错误会被正确标记,但该错误不会在 View 中更新。知道为什么会这样吗?有人说如果您使用类似以下内容进行重定向:

return "redirect:/spring/person/list";

那么这可能会导致类似的情况,但这里的情况似乎并非如此。

在调试中,如果我在 EJournalValidator.java 的验证方法中放置断点,并在尝试在正在检查的字段中提交空白时检查错误变量,则会发现这些错误:

org.springframework.validation.BindException: org.springframework.validation.BeanPropertyBindingResult: 1 errors Field error in object 'ej' on field 'strStartDate': rejected value []; codes [ejournal.strStartDate.ej.strStartDate,ejournal.strStartDate.strStartDate,ejournal.strStartDate.java.lang.String,ejournal.strStartDate]; arguments []; default message [Field name is required.]

您知道为什么调试时发现的错误不会向用户显示吗?

编辑:添加 Controller handleRequest方法,以防需要知道它。

protected ModelAndView handleRequest(HttpServletRequest request,
HttpServletResponse response, Object command, BindException errors)
throws Exception {
EJournalForm form = (EJournalForm) command;
form.setUser(getUser());

form.load(request, false);

HttpSession session = request.getSession(false);
session.setAttribute(LBIBOConstants.SESSION_VAR_TAB_ALERT_MSG, null);

return new ModelAndView(getFormView(), getCommandName(), form);
}

编辑2:从 SimpleFormController 添加代码片段,这似乎是它所坚持的内容。它永远不会命中我的 Controller 的handleRequest()方法,除非在检查时不存在错误:

protected ModelAndView processFormSubmission(
HttpServletRequest request, HttpServletResponse response, Object command, BindException errors)
throws Exception {

if (errors.hasErrors()) {
if (logger.isDebugEnabled()) {
logger.debug("Data binding errors: " + errors.getErrorCount());
}
return showForm(request, response, errors);
}
else if (isFormChangeRequest(request, command)) {
logger.debug("Detected form change request -> routing request to onFormChange");
onFormChange(request, response, command, errors);
return showForm(request, response, errors);
}
else {
logger.debug("No errors -> processing submit");
return onSubmit(request, response, command, errors);
}
}

我进一步注意到......因此我打算重写我的 Controller 方法,但意识到我正在扩展 SessionSimpleFormController 而不是 SimpleFormController。现在研究一下为什么人们会扩展其中一个,因为我首先基于其他人的工作,然后在我上面显示的链接中注意到他们正在使用 SimpleFormController。

最佳答案

如果验证期间发生错误,请更改您的handleRequest方法以返回现有的表单/模型对象。当您返回新的 ModelAndView 时,它会清除错误,因此您在 View 中看不到它们。尝试使用 RedirectView 重定向到同一 View ,而不会丢失绑定(bind)到表单/模型的错误,如下所示:

    protected ModelAndView handleRequest(HttpServletRequest request,
HttpServletResponse response, Object command, BindException errors)
throws Exception {
EJournalForm form = (EJournalForm) command;
form.setUser(getUser());
form.load(request, false);

HttpSession session = request.getSession(false);
session.setAttribute(LBIBOConstants.SESSION_VAR_TAB_ALERT_MSG, null);

if(errors.hasErrors()){
return new ModelAndView(new RedirectView(getFormView()));
}else{
return new ModelAndView("anotherView", "commandName", form);
}
}

从 Spring 3+ 开始,getFormView() 和 getCommandName() 已弃用。

关于java - Spring 2.5 表单验证在 validator 实现中发现的错误不会更新 View <form :error/> tags,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23920284/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com