0

您好,我尝试序列化我的枚举类,但是当我尝试编译我的项目时出现错误。

这是我的简单枚举:

import com.google.gwt.user.client.rpc.IsSerializable;

public enum ConversationType implements IsSerializable {

    PAIR, GROUP, ALL;

    ConversationType() {

    }

}

我的 pom 依赖项中也有 gwt-user:

<dependency>
      <groupId>com.google.gwt</groupId>
      <artifactId>gwt-user</artifactId>
      <version>2.5.0</version>
      <scope>provided</scope>
    </dependency>

在那个项目中,我有其他 DTO 对象,并且该对象实现 IsSerializable。当我从该枚举中删除 IsSerializable 时,一切都很好。

这是我的错误:

An exception has occurred in the compiler (1.7.0_13). Please file a bug at the Java Developer Connection (http://java.sun.com/webapps/bugreport)  after checking the Bug Parade for duplicates. Include your program and the following diagnostic in your report.  Thank you.
com.sun.tools.javac.code.Symbol$CompletionFailure: class file for com.google.gwt.user.client.rpc.IsSerializable not found
4

1 回答 1

3

IsSerializable所有枚举都可以通过 GWT-RPC 序列化,那么如果这会触发中的错误,您为什么要尝试实现它javac呢?

参考:https ://developers.google.com/web-toolkit/doc/latest/DevGuideServerCommunication#DevGuideSerializableTypes

于 2013-04-20T16:38:35.673 回答