我有2个会话bean。
class A{
private Sting name;
}
class B{
}
如何在B bean中获取A.name?
答案 0 :(得分:0)
您可以在 A类中设置变量公开,并为 A类创建对象 例如
公共等级B {
public static void main(String args[]) {
A testEx = new A();
String testexample = testEx.name;
System.out.print(testexample);
}
}
公共类A { public String name;
}
答案 1 :(得分:0)
为每个bean类设置键,并使用已存储在会话中的键调用所需类的对象。