私が作成した Java アプリケーションがあり、今週はそれに GWT を追加しようとしました。GWT Designer で自分のクラスを表示しようとすると、次のエラーが発生します。
Error loading module(s).
GWT Designer can't load a module because of error in gwt.xml module description, incorrect resource which requires processing with GWT generator or by some other configuration error.
Please check your $project_dir/.gwt/.gwt-log for GWT-specific errors (not GWT Designer errors).
This log has the following error messages:
[ERROR] Errors in 'file:/C:/Temp/essd/Projecto/anacom/src/main/java/anacom/shared/dto/OutputObterModoDto.java'
[ERROR] Line 8: No source code is available for type anacom.domain.Modo; did you forget to inherit a required module?
[ERROR] Errors in 'file:/C:/Temp/essd/Projecto/anacom/src/main/java/anacom/shared/dto/TelemovelDetalhadoDto.java'
[ERROR] Line 8: No source code is available for type anacom.domain.Modo; did you forget to inherit a required module?
[ERROR] Errors in 'file:/C:/Temp/essd/Projecto/anacom/src/main/java/anacom/shared/exception/TelemovelModoException.java'
[ERROR] Line 17: No source code is available for type anacom.domain.Modo; did you forget to inherit a required module?
[ERROR] Errors in 'file:/C:/Temp/essd/Projecto/anacom/src/main/java/anacom/shared/dto/OutputObterModoDto.java'
[ERROR] Line 8: No source code is available for type anacom.domain.Modo; did you forget to inherit a required module?
[ERROR] Unable to find type 'anacom.presentationserver.client.AnacomGWT'
[ERROR] Hint: Previous compiler errors may have made this type unavailable
[ERROR] Hint: Check the inheritance chain from your module; it may not be inheriting a required module or a module may not be adding its source path entries properly
そのエラーのあるすべてのファイルには、クラス anacom.domain.Modo のインポートがあります。そのクラスは、これのみを含む列挙型です。
package anacom.domain;
public enum Modo {
LIGADO, DESLIGADO, OCUPADO, SILENCIO
}
また、gwt.xml でモジュールを継承し、エントリポイント クラスを定義します。私はこれを解決するために過去 3 日間を費やしてきました。あなたが私を助けることができれば、私は感謝します. これが初心者の質問である場合は申し訳ありませんが、ウェブを検索しても解決策が見つかりませんでした。どうもありがとう!