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.
我在码头服务器上使用 wicket 1.5.8,在我的 getHomePage() 返回类(我们称之为 A 类)中,我使用的是在 newSession 函数中创建的会话,问题是当我调用 Session 时在 A 类中.get().getId() 我得到空值,当我检查问题时,我看到会话是在我的 A 类加载后创建的。现在有没有人如何在 getHomePage() 的返回类之前使会话加载
谢谢。
您的会话仍然是临时的,请调用 Session#bind()。