包括从域到 gwt 共享类的枚举

发布于 2024-11-09 15:54:03 字数 369 浏览 0 评论 0原文

我有一个结构类似于

+com.example
     +domain
          +enums
     +gwt
          +client
          +server
          +shared

我的 gwt 配置

<source path='client'/>
<source path='shared'/>
<entry-point class="com.example.gwt.client.Dashboard"/>

的项目,我真正想要的是在客户端使用我的域枚举。或者我必须将它们复制为共享类/转换为字符串?

I have project with structure like

+com.example
     +domain
          +enums
     +gwt
          +client
          +server
          +shared

my gwt config

<source path='client'/>
<source path='shared'/>
<entry-point class="com.example.gwt.client.Dashboard"/>

What I really wan't is to use my domain enums at client side. Or I must duplicate them as shared classes/convert to Strings?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

葬心 2024-11-16 15:54:03

如果枚举类与 GWT 兼容,您可以将 Enums.gwt.xml 放置在 domain/enums 中,并使用 ; 标签。您的主 gwt.xml 文件需要添加 标记来引入 Enums.gwt.xml。此外, 标记可以是 如果您需要更细粒度的控制,请过滤

If the enum classes are GWT-compatible, you could place an Enums.gwt.xml in domain/enums with a <source path='' /> tag. Your main gwt.xml file would need to add an <inherits> tag to pull in Enums.gwt.xml. Also, the <source> tags can be filtered if you need finer-grained control.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文