我有两个表:公司和汽车。一家公司可以拥有许多汽车。我无法正确地坚持汽车。从下拉列表中选择“查看”页面中的公司。
我的控制器
@RequestMapping("/")
public String view(ModelMap model) {
Map<String, String> companyList = new HashMap<String, String>();
List<Company> companies = companyService.listAllCompanies();
for (Company company : companies) {
companyList.put(String.valueOf(company.getId()), company.getName());
}
model.addAttribute("companies", companyList);
model.addAttribute("automotive", new Automotive());
return "automotive/index";
}
@RequestMapping("manage")
public String manage(@ModelAttribute Automotive automotive,
BindingResult result, ModelMap model) {
model.addAttribute("automotive", automotive);
Map<String, String> companyList = new HashMap<String, String>();
List<Company> companies = new ArrayList<Company>();
for (Company company : companies) {
companyList.put(String.valueOf(company.getId()), company.getName());
}
model.addAttribute("companies", companyList);
automotiveService.addAutomotive(automotive);
return "automotive/index";
}
我的观点
<form:form action="/Automotive/manage" modelAttribute="automotive">
Name : <form:input path="name" />
Description : <form:input path="description" />
Type : <form:input path="type" />
Company : <form:select path="company" items="${companies}" />
<input type="submit" />
</form:form>
Q1> 逻辑上如预期的那样,公司 ID 不会被保存,因为在这里查看它的 ID,但实际上在保存时它应该是类型公司的对象。我该如何解决这个问题。我需要使用 DTO 还是有任何直接的方法?
Q2> 我不能直接通过公司列表来查看而不是在控制器中创建新地图吗?