当我编写 <jsp:useBean> 时,class 属性决定了新对象的类(如果已创建)。它还确定生成的 servlet 中使用的引用变量的类型。
在 JSP 中:
<jsp:useBean id="person" class="foo.Person" scope="page" />
生成的servlet:
food.person = null;
if(person==null) person = new foo.Person();
有没有办法改变实际对象类型的引用类型?换句话说,将引用类型设为 Person,将对象类型设为 Student。