我是java世界的新手,我正在尝试从我的jsp页面以字符串格式发送一个JSON对象,并希望将其转换为类文件,但我无法这样做。到目前为止,我正在编写这段代码,这对我来说效果不佳。
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
String newHtmlAttribute = request.getParameter("attribute");
ObjectMapper jsMapper = new ObjectMapper();
HtmlProperty newHtmlProperty = new HtmlProperty();
newHtmlProperty = jsMapper.readValue(newHtmlAttribute,HtmlProperty.class);
System.out.println(newHtmlAttribute);
}
任何想法?