Scout Form から scout サービスを呼び出そうとするので、共有フォルダにインターフェースを作成する
@TunnelToServer
public interface IPersonsFormService extends IService {
void test();
}
サーバーで、このインターフェイスの実装を作成しました
public class PersonsFormService implements IPersonsFormService {
@Override
public void test() {
System.out.println("TEST");
}
}
しかし、私は得る
o.e.scout.rt.platform.exception.ExceptionHandler - SecurityException:service registry does not contain a service of type com.sixt.leasing.contract.scout.shared.person.IPersonsFormService [majorPrincipal: 'marko']
java.lang.SecurityException: service registry does not contain a service of type com.sixt.leasing.contract.scout.shared.person.IPersonsFormService
@TunnelToServer
インターフェースが登録されていないように見えますが、Neonではサービスがアノテーションで登録されていると思いました 。
他にどこでサービスを登録すればよいですか?
このプロジェクトは、メイン プロジェクトの拡張プロジェクトです。
主なプロジェクトでは、すべてのサービスが動作します....