我已尝试过类似问题中给出的所有解决方案,但没有任何效果。
Servlet类:
test t = new test();
t.setName("abcd");
request.setAttribute("t", t);
RequestDispatcher req = request.getRequestDispatcher("test.jsp");
req.forward(request, response);
测试类:
class test{
String name;
public void setName(String name)
{
this.name = name;
}
public String getName()
{
return this.name;
}
}
在jsp文件中我正在做:${t.name}<br>
但它导致javax.el.PropertyNotFoundException