Vaadin - 始终需要 GWT 依赖项?
在使用 Vaadin 框架的部署中 GWT 是必需的吗?
我的意思是 Vaadin 框架是在 GWT 上构建的,然后不使用 GWT 是不可能的。 我之所以这么问,是因为有经理问我,但我无法回答是否可以单独使用。
我知道 GWT 不需要 Vaadin,但是反过来呢?
Is the GWT mandatory in a deployment with Vaadin framework.
I mean is the Vaadin framework builded over the GWT and then not using GWT is not possible.
I ask because some manager asked me but I was not able to answer if it can be used separately or not.
I know the GWT does not need Vaadin but what about the inverse?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以在没有 GWT 的情况下使用 Vaadin。 Vaadin 7 和 8 客户端代码是使用 GWT 预编译的。因此,您仅需要 GWT 来向 Vaadin 7 或 8 添加新小部件。
You can use Vaadin without GWT. Vaadin 7 and 8 client side code is precompiled with GWT. Thus you need GWT only for adding new widgets to Vaadin 7 or 8.
Vaadin 7 和 8 内置了 GWT 的完整副本。因此不再需要单独的 GWT 依赖项。
此外,Vaadin 版本 10 及以上版本不再将 GWT 用于小部件。
Vaadin 7 and 8 have full copy of GWT built-in. No separate GWT dependency is thus needed any more.
Furthermore Vaadin version 10 onwards do not use use GWT for widgets anymore.
我会在第一次接触时参考 vaadin 的 stackoverflow 标签定义。 Wikipedia 也有同样的说法:Vaadin 构建于 GWT 之上 - 这意味着它位于 GWT 之上, GWT 不在 Vaadin 之上。顶部总是可以移除,但底层却不能。
I would refer the stackoverflow tag definition of vaadin at a first touch. Wikipedia tells the same: Vaadin is built on GWT - meaning it is on the top of GWT, GWT is not on the top of Vaadin. The top can be always removed but the underlying basis not.