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.
我没有显式地创建 Application 对象,并假设 Vaadin 会默默地创建它。
我怎样才能得到它的参考?
在 Vaadin 7 中称为 UI。可通过以下方式访问:
UI.getCurrent();
对于您自己在扩展 UI 中的方法,例如:
((MyUI) UI.getCurrent()).getMyData();
Vaadin 书中的更多信息。