我有两张桌子:公司和汽车。一家公司可以拥有许多汽车。 我无法正常坚持汽车。在下拉列表中的“查看”页面中选择公司。
我的控制器
@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&GT;逻辑上如预期的那样公司ID不会被保存,因为在这里它是一个id但实际上在保存它时应该是公司类型的对象。我该怎么解决这个问题。我需要使用DTO还是有任何直接的方法?
Q2&GT;我不能直接将公司列表传递给查看而不是在控制器中创建新的地图吗?
答案 0 :(得分:1)
您可以使用公司的ID作为密钥,然后使用转换器,它会自动将数据从表单转换为域对象。就像在这段代码中一样:
public class CompanyIdToInstanceConverter implements Converter<String, Company> {
@Inject
private CompanyService _companyService;
@Override
public Company convert(final String companyIdStr) {
return _companyService.find(Long.valueOf(companyIdStr));
}
}
在JSP中:
<form:select path="company" items="${companies}" itemLabel="name" itemValue="id"/>
如果您尚未触及此类型转换,则可能需要了解有关类型转换的更多信息。它在Spring doc中得到了很好的描述(我找不到:http://static.springsource.org/spring/docs/3.0.x/reference/validation.html第5.5段)。
我希望它会对你有所帮助。