1

嗨,这是糟糕的设计吗?如果一切按计划进行,我想返回 Profile。如果不是,我想返回我的自定义错误消息。

这个可以吗?

@RequestMapping(value = "/{userId}", method = RequestMethod.PUT)
public @ResponseBody
Object saveUser(@PathVariable Long userId, ModelMap data, @Valid Profile profile, BindingResult bindingResult, HttpServletResponse response) {

    if (bindingResult.hasErrors()) {
        response.setStatus(HttpServletResponse.SC_BAD_REQUEST);
        return ValidationUtil.createValidationErrors(bindingResult);
    }
    profileService.save(profile);
    return profile;
}
4

2 回答 2

1

您应该使用 @ExceptionHandler (Exception.class) 和 @ResponseStatus 注解

例子

@ExceptionHandler (Exception.class) 
@RequestMapping(value = "/{userId}", method = RequestMethod.PUT) 
public @ResponseBody 
Profile saveUser(@PathVariable Long userId, ModelMap data, @Valid Profile profile, BindingResult bindingResult, HttpServletResponse response) { 

    if (bindingResult.hasErrors()) { 
        response.setStatus(HttpServletResponse.SC_BAD_REQUEST); 
        throw new Exception("message");
        if(ValidationUtil.createValidationErrors(bindingResult)) {
            throw new Exception("message");
        }
    } 
    profileService.save(profile); 
    return profile;
}

有关更多详细信息,请参阅

http://jnb.ociweb.com/jnb/jnbNov2010.html

http://www.stormpath.com/blog/spring-mvc-rest-exception-handling-best-practices-part-1

http://blog.cuttleworks.com/2011/12/spring-restful-controllers-and-error-handling/

于 2012-10-01T12:19:38.207 回答
0

如果您需要访问配置文件对象,我建议您将其添加到会话或请求上下文中。然后,您可以从 saveUser 方法(或 ModelAndView 对象,如果您愿意)返回一个字符串,并且该对象仍可用于以后的请求。

于 2012-10-01T12:18:06.667 回答