在spring中发生错误时保留文本框的值

时间:2013-05-15 05:18:09

标签: java spring jsp controller

我正在开发一个webapp。在该应用程序中,我有一个页面,其中有三个基于id的搜索选项。如果ID错误,我想在搜索文本框中保留id,我想显示错误消息。我用

试过了

ModelAndView.addObject(“id”,value);

这个工作正常,现在我想知道是否有更好的方法来做这个因为假设我有一个大的形式,我想保留每个字段的价值比使用它很难以上approch 。请帮忙!

我正在使用ID和名称搜索这就是为什么我尝试捕捉块

这是我的jsp文件

    html>
    <head>
        <link rel="stylesheet" type="text/css" href="./css/style.css" />
        <link rel="stylesheet" type="text/css" href="./bootstrap/css/bootstrap.css" />
        <link rel="stylesheet" type="text/css" href="./bootstrap/css/bootstrap.min.css" />
        <link rel="stylesheet" type="text/css" href="./bootstrap/css/bootstrap-responsive.css" />
        <link rel="stylesheet" type="text/css" href="./bootstrap/css/bootstrap-responsive.min.css" />
        <script>
            function redirectToSearchResult(textBoxId){
                window.location.href= document.getElementById(textBoxId).name+'.htm?'+'id='+document.getElementById(textBoxId).value;
            }
        </script>
    </head>
    <body>
        <div class="page-header"></div>

        <div id="searchByBuyer">
            <label id="E_B_I"><h2>Buyer Search<h2></label><br>
            <input type="text" id="S_B_B" class="text-box" name="searchByBuyer" value=${buyerId} ></input>
            <input type="button" id="BuyerSearch" class="btn-custom" value="search" onclick="redirectToSearchResult('S_B_B')"/>
        </div>

        <div id="searchByCategory">
            <label id="E_C_I"><h2>Category Search<h2></label><br>
            <input type="text" id="S_B_C" class="text-box" name="searchByCategory" value=${categoryId} ></input>
            <input type="button" id="CategorySearch" class="btn-custom" value="search" onclick="redirectToSearchResult('S_B_C')"/>
        </div>

        <div id="searchByArticle">
            <label id="E_A_I"><h2>Article Search<h2></label><br>
            <input type="text" id="S_B_I" class="text-box" name="searchByArticle" value=${articleId} ></input>
            <input type="button" id="ArticleSearch" class="btn-custom" value="search" onclick="redirectToSearchResult('S_B_I')"/><br>
        </div>

        <br>
        <label style="color:red; padding-left:45em; padding-top:15em"><h4>${error}</h4></label>
     </body>

</html>

这是我的控制器

`

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.servlet.ModelAndView;

@Controller
public class BuyerController {

    @Autowired
    private BuyerRepo buyerRepo;

    @RequestMapping(value = "/searchByBuyer.htm", method = RequestMethod.GET)
    public ModelAndView searchFields(@RequestParam(value = "id") String buyerId) throws InvalidIdException {
        Buyer buyer = null;
        ModelAndView buyerSearch = new ModelAndView("buyerSearch");
        ModelAndView errorView = ErrorView.getErrorView("buyerId", buyerId, "Enter a valid Buyer id!");

        try {
            buyer = buyerRepo.getBuyer(Long.parseLong(buyerId));

        } catch (NumberFormatException e) {
            buyer = buyerRepo.getBuyer(buyerId);
            if (buyer == null) return errorView;

        } catch (Exception e) {
            buyerSearch = errorView;
        }

        buyerSearch.addObject("buyer", buyer);
        return buyerSearch;
    }

}

`

这是使用参数

创建错误视图的错误和视图类

`

import org.springframework.web.servlet.ModelAndView;

public class ErrorView {

    public static ModelAndView getErrorView(String key, String value, String message) {
        ModelAndView errorView = new ModelAndView("index");
        errorView.addObject("error", message);
        errorView.addObject(key, value);
        return errorView;
    }
}

`

1 个答案:

答案 0 :(得分:1)

Spring对Web表单有JSR 303-Bean-Validation支持。 这种构建方式比一些自己的实现更容易使用。

你需要:

  • 一个命令对象,它从表单中获取所有值。每个字段都可以使用JSR 303-Bean-Validation注释来指示要强制执行的constaints
  • 您需要一个带有(至少)两个参数的Web控制器方法:@Valid命令对象,BindingResultBindingResult必须是命令对象后的参数)
  • 在您的网络控制器方法中,您需要检查BindingResult,如果它失败则需要再次呈现表单
  • 在您的表单中,您需要使用form:errors来显示错误(form:errors也可以显示特定字段的错误)
  • 你需要一些弹簧配置:<mvc:annotation-driven />(有更多可能,但这应该足够开始)
  • 你需要一个JSR 303-Bean-Validation库,例如:Hibernate Validator(这不是Hibernate ORM)

但是一个例子最好地解释了它: http://www.mkyong.com/spring-mvc/spring-3-mvc-and-jsr303-valid-example/