1

私はグルーヴィーに変換したい次のJavaコードを持っています:

String containerId = "545cdc81a969";

ExecCreateCmdResponse execCreateCmdResponse = dockerClient
    .execCreateCmd(containerId)
    .withAttachStdout(true)
    .withCmd("sh", "-c", "sleep 5 && exit 5")
    .exec();

ExecStartResultCallback execStartCmd =
    dockerClient.execStartCmd(execCreateCmdResponse.getId())
         .exec(new ExecStartResultCallback(System.out, System.err))
         .awaitCompletion();

groovy の現在のバージョンは次のとおりです。

 String id = "545cdc81a969";

    def execCreateCmdResponse = dockerClient
            .execCreateCmd(id)
            .withAttachStdout(true)
            .withCmd('sh','-c','sleep 5 && exit 5')
            .exec()


    dockerClient.execStartCmd(execCreateCmdResponse.getId())
            .withDetach(false)
            .exec(new ExecStartResultCallback(System.out, System.err))
            .awaitCompletion()

私の問題は、groovy コードを実行しようとすると、次のエラーが発生することです。

* What went wrong:
Execution failed for task ':werner'.
> No signature of method: com.github.dockerjava.core.command.ExecStartCmdImpl.exec() is applicable for argument types: (com.github.dockerjava.core.command.ExecStartResultCallback) values: [com.github.dockerjava.core.command.ExecStartResultCallback@6ce82155]
  Possible solutions: exec(com.github.dockerjava.api.async.ResultCallback), exec(com.github.dockerjava.api.async.ResultCallback), every(), grep(), every(groovy.lang.Closure), grep(java.lang.Object)

Java-exec-Method には署名があります。

public <T extends ResultCallback<Frame>> T exec(T resultCallback);

「new ExecStartResultCallback(System.out, System.err)」を「ResultCallback」にキャストしようとしましたが、うまくいきませんでした。

正しいメソッドが呼び出されるように、インスタンスを ResultCallback-Instance として処理するように Groovy に強制する方法はありますか?

よろしく、マーボン

4

1 に答える 1

1

同僚がこの問題を解決してくれましたが、インスタンス dockerClient がカスタム クラスローダーを使用していることがわかりました。これにはいくつか問題があります。これは、新しい ExecStartResultCallback(System.out, System.err) を dockerInstance の同じクラスローダーでインスタンス化することで解決できます。

    ClassLoader dockerClientClassLoader = dockerClient.getClass().getClassLoader()
    Class callbackClass = dockerClientClassLoader.loadClass("com.github.dockerjava.core.command.ExecStartResultCallback")
    def callback = callbackClass.getDeclaredConstructor(OutputStream.class, OutputStream.class).newInstance(System.out, System.err);

    dockerClient.execStartCmd(execCreateCmdResponse.getId())
            .withDetach(false)
            .exec(callback)
            .awaitCompletion()
于 2016-04-18T12:24:52.703 に答える