gpt4 book ai didi

java - 我理解@ModelAttribute 对吗?

转载 作者:行者123 更新时间:2023-12-04 06:08:32 27 4
gpt4 key购买 nike

我需要帮助来理解下面的示例 @ModelAttribute来自 Spring文档:(方法 populatePetTypes() )

@Controller
@RequestMapping("/owners/{ownerId}/pets/{petId}/edit")
@SessionAttributes("pet")
public class EditPetForm {

// ...

@ModelAttribute("types")
public Collection<PetType> populatePetTypes() {
return this.clinic.getPetTypes();
}

@RequestMapping(method = RequestMethod.POST)
public String processSubmit(
@ModelAttribute("pet") Pet pet,
BindingResult result, SessionStatus status) {

new PetValidator().validate(pet, result);
if (result.hasErrors()) {
return "petForm";
}
else {
this.clinic.storePet(pet);
status.setComplete();
return "redirect:owner.do?ownerId=" + pet.getOwner().getId();
}
}

}

我不明白这就像我们的模型对象可以在整个当前 Controller 中获得的额外“值(value)”。这是真的吗?

我正在尝试通过将该代码添加到我的 Controller 来进行一些测试:
@ModelAttribute("user")
public Integer getKod(){
return new Integer(123321);
}

另一种方法是:
@RequestMapping("/register")
public String register(Map<String, Object> map, @ModelAttribute("user") MyUser user, BindingResult result) {
...
}

现在我尝试在我的表单中显示“kod”:
<form:form method="post" action="" commandName="user">
(...)
<form:label path="kod">kod</form:label>:
<form:input path="kod"/>
(...)
</form:form>

但我得到了:
java.lang.IllegalArgumentException: java.lang.ClassCastException@229d7c57
请帮忙!

最佳答案

注释的含义不同,具体取决于您放置它的位置。
@ModelAttribute on a method 告诉 Spring 将该方法的返回值放入 M​​ap 中,以该名称命名。它并没有告诉它对该对象进行属性绑定(bind)。因此,您在 map 中放置了一个名为“用户”的整数。
@ModelAttribute on a parameter 告诉 Spring “在 map 中查找具有此名称的内容,并将其分配给此方法参数。”

因此,您将 Integer 放入名为“user”的映射中,然后要求 Spring 分配给 MyUser 类型的 Object。当然 Integer 不能转换为 MyUser!

我认为您将经典 MVC 意义上的“模型”(即您的 MyUser)与 Spring 的 ModelMap(作为 View 的一部分可用的所有数据)混淆了。当 Spring Controller 引用“模型”时,它表示与构建屏幕相关的所有事物的模型映射。您的 MyUser 对象是该映射中的一个条目,但其中可能还有更多其他内容也是屏幕的一部分。在 spring-ese 中,我们经常将您的 MyUser 称为“表单支持对象”,因为它是表单的实际绑定(bind)目标。

例如,在您发布的片段中,PetTypes 的“类型”列表是 Spring ModelMap 的一部分。它是构建 View 所需的引用数据。但它不是“宠物”对象的属性,它是表单支持对象。

关于java - 我理解@ModelAttribute 对吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8072261/

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