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.
我的Errai GWT应用程序出现问题,当页面尝试访问TransitionTo页面时出现此错误,例如FormsPage:
Errai GWT
TransitionTo
FormsPage
No page with a widget type of com.mycompany.myproject.client.local.FormsPage exists
即使 FormsPage 在包中并且没有编译时错误(因此它能够找到页面):
TransitionTo<FormsPage> formsPage;
可能是什么问题呢?
我忘记了@Page“页面”类中的包含注释。
@Page
所以添加它解决了这个问题。