我需要将一个复杂的对象从视图页面传递给 Spring 控制器。我正在尝试使用模型属性(查看页面是使用 Thymeleaf 和 HTML 构建的)。
我的问题是,该对象作为字符串而不是实际对象传递,这会在控制器端导致转换异常。在下面,例如“类别”是一个复杂的对象,它包含一个列表、一个数组、一个字符串和其他对象作为内部变量。类别作为字符串而不是对象本身传递。如何将此对象传递给控制器?
@Controller
public class QController extends WZController{
@RequestMapping(value = "/refreshfacets")
public String refreshfacets(HttpServletRequest request, HttpServletResponse response, Model model,
@ModelAttribute("refreshFacetsRequest") refreshFacetsRequestDTO refreshfacetsrequest) throws Exception {
Map<String, Object> responseMap = new HashMap<String, Object>();
ProductSearchResult productsearchresult = new ProductSearchResult();
//super.refreshFacets(request, response, model, productsearchresult);
return XXXX;
}
}
public class refreshFacetsRequestDTO {
private static final long serialVersionUID = 1L;
private Category category;
private String state;
private String program;
private String subject;
private String year;
private String price;
// Constructor, getter, setter methods;
}
<div th:remove="tag">
<form method="post" id="form1" th:action="@{/refreshfacets}" th:object="${refreshFacetsRequest}">
<input type="hidden" id="category" name="category" th:if="${category}" th:value="${category}"/>
<input type="text" id="state" name="state" th:if="${state}" th:value="${state}"/>
<input type="text" id="program" name="program" th:if="${program}" th:value="${program}"/>
<input type="text" id="subject" name="subject" th:if="${subject}" th:value="${subject}"/>
<input type="submit" th:attr="onsubmit=${'doAjaxPost()'}"></input>
</form>
</div>
请就此提出建议。传递对象的模型属性以外的任何其他选项也可以。如果是这样,请详细说明您的其他选择。