Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有 2 个会话 bean。
class A{ private Sting name; } class B{ }
如何在 B bean 中获取 A.name?
您可以在A 类中公开变量并为A 类创建一个对象 例如
公共类 B {
public static void main(String args[]) { A testEx = new A(); String testexample = testEx.name; System.out.print(testexample); }
}
公共类 A{ 公共字符串名称;
为每个 bean 类设置Key ,并使用已经存储在 session 中的key调用所需类的对象。