在我的 jsp 中,我使用了一个表单:
<input type="hidden" name="question" value="${question.feedback}">
当我在下一个 servlet 中检索此值时:
String question= request.getParameter("question");
我打印它(仅用于测试用例)
System.out.println(question.toString());
我得到一个问题对象的所有属性的输出?
但是因为我用它来调用它request.getParameter
是一个字符串,我不能投射它。但我会说它是一个对象。
我不能强制转换,也不能在我的 JSP 中的属性上设置它。有没有办法将它作为我的 servlet 中的对象而不将它放在 sessionscope 上。