Fixed - CodecsSubstitutions added to avoid errors during native image building. #3747
parent
34c3d47bf5
commit
6496bd0c3b
@ -0,0 +1,22 @@
|
||||
package io.quarkus.redisson.client.runtime.graal;
|
||||
|
||||
import com.oracle.svm.core.annotate.Substitute;
|
||||
import com.oracle.svm.core.annotate.TargetClass;
|
||||
|
||||
@TargetClass(className = "org.redisson.codec.JsonJacksonCodec")
|
||||
final class JsonJacksonCodecSubstitute {
|
||||
|
||||
@Substitute
|
||||
private void warmup() {
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@TargetClass(className = "org.redisson.codec.MarshallingCodec")
|
||||
final class MarshallingCodecSubstitute {
|
||||
|
||||
@Substitute
|
||||
private void warmup() {
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,22 @@
|
||||
package io.quarkus.redisson.client.runtime.graal;
|
||||
|
||||
import com.oracle.svm.core.annotate.Substitute;
|
||||
import com.oracle.svm.core.annotate.TargetClass;
|
||||
|
||||
@TargetClass(className = "org.redisson.codec.JsonJacksonCodec")
|
||||
final class JsonJacksonCodecSubstitute {
|
||||
|
||||
@Substitute
|
||||
private void warmup() {
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@TargetClass(className = "org.redisson.codec.MarshallingCodec")
|
||||
final class MarshallingCodecSubstitute {
|
||||
|
||||
@Substitute
|
||||
private void warmup() {
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue