mirror of
https://github.com/spring-projects/spring-data-elasticsearch.git
synced 2025-06-14 16:12:11 +00:00
parent
cf09e57736
commit
f558822545
@ -27,21 +27,18 @@ import org.springframework.data.elasticsearch.client.elc.EntityAsMap;
|
|||||||
import org.springframework.data.elasticsearch.core.event.AfterConvertCallback;
|
import org.springframework.data.elasticsearch.core.event.AfterConvertCallback;
|
||||||
import org.springframework.data.elasticsearch.core.event.AfterLoadCallback;
|
import org.springframework.data.elasticsearch.core.event.AfterLoadCallback;
|
||||||
import org.springframework.data.elasticsearch.core.event.AfterSaveCallback;
|
import org.springframework.data.elasticsearch.core.event.AfterSaveCallback;
|
||||||
import org.springframework.data.elasticsearch.core.event.AuditingEntityCallback;
|
|
||||||
import org.springframework.data.elasticsearch.core.event.BeforeConvertCallback;
|
import org.springframework.data.elasticsearch.core.event.BeforeConvertCallback;
|
||||||
import org.springframework.data.elasticsearch.core.event.ReactiveAfterConvertCallback;
|
import org.springframework.data.elasticsearch.core.event.ReactiveAfterConvertCallback;
|
||||||
import org.springframework.data.elasticsearch.core.event.ReactiveAfterLoadCallback;
|
import org.springframework.data.elasticsearch.core.event.ReactiveAfterLoadCallback;
|
||||||
import org.springframework.data.elasticsearch.core.event.ReactiveAfterSaveCallback;
|
import org.springframework.data.elasticsearch.core.event.ReactiveAfterSaveCallback;
|
||||||
import org.springframework.data.elasticsearch.core.event.ReactiveAuditingEntityCallback;
|
|
||||||
import org.springframework.data.elasticsearch.core.event.ReactiveBeforeConvertCallback;
|
import org.springframework.data.elasticsearch.core.event.ReactiveBeforeConvertCallback;
|
||||||
import org.springframework.data.elasticsearch.core.mapping.SimpleElasticsearchMappingContext;
|
|
||||||
import org.springframework.lang.Nullable;
|
import org.springframework.lang.Nullable;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author Peter-Josef Meisch
|
* @author Peter-Josef Meisch
|
||||||
* @since 5.1
|
* @since 5.1
|
||||||
*/
|
*/
|
||||||
public class ElasticsearchRuntimeHints implements RuntimeHintsRegistrar {
|
public class SpringDataElasticsearchRuntimeHints implements RuntimeHintsRegistrar {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void registerHints(RuntimeHints hints, @Nullable ClassLoader classLoader) {
|
public void registerHints(RuntimeHints hints, @Nullable ClassLoader classLoader) {
|
||||||
@ -70,6 +67,5 @@ public class ElasticsearchRuntimeHints implements RuntimeHintsRegistrar {
|
|||||||
|
|
||||||
// properties needed to log the different versions
|
// properties needed to log the different versions
|
||||||
hints.resources().registerPattern("versions.properties");
|
hints.resources().registerPattern("versions.properties");
|
||||||
hints.resources().registerPattern("co/elastic/clients/version.properties");
|
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -15,8 +15,10 @@
|
|||||||
*/
|
*/
|
||||||
package org.springframework.data.elasticsearch.client.elc.aot;
|
package org.springframework.data.elasticsearch.client.elc.aot;
|
||||||
|
|
||||||
import java.util.Arrays;
|
import co.elastic.clients.elasticsearch._types.mapping.RuntimeFieldType;
|
||||||
|
import co.elastic.clients.elasticsearch._types.mapping.TypeMapping;
|
||||||
|
import co.elastic.clients.elasticsearch.indices.IndexSettings;
|
||||||
|
import co.elastic.clients.elasticsearch.indices.PutMappingRequest;
|
||||||
import org.springframework.aot.hint.MemberCategory;
|
import org.springframework.aot.hint.MemberCategory;
|
||||||
import org.springframework.aot.hint.RuntimeHints;
|
import org.springframework.aot.hint.RuntimeHints;
|
||||||
import org.springframework.aot.hint.RuntimeHintsRegistrar;
|
import org.springframework.aot.hint.RuntimeHintsRegistrar;
|
||||||
@ -24,6 +26,8 @@ import org.springframework.aot.hint.TypeReference;
|
|||||||
import org.springframework.lang.Nullable;
|
import org.springframework.lang.Nullable;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* runtime hints for the Elasticsearch client libraries, as these do not provide any of their own.
|
||||||
|
*
|
||||||
* @author Peter-Josef Meisch
|
* @author Peter-Josef Meisch
|
||||||
* @since 5.1
|
* @since 5.1
|
||||||
*/
|
*/
|
||||||
@ -31,9 +35,22 @@ public class ElasticsearchClientRuntimeHints implements RuntimeHintsRegistrar {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void registerHints(RuntimeHints hints, @Nullable ClassLoader classLoader) {
|
public void registerHints(RuntimeHints hints, @Nullable ClassLoader classLoader) {
|
||||||
// needed for the http client used by the Elasticsearch client
|
|
||||||
hints.serialization().registerType(org.apache.http.impl.auth.BasicScheme.class);
|
hints.reflection()
|
||||||
hints.serialization().registerType(org.apache.http.impl.auth.RFC2617Scheme.class);
|
.registerType(TypeReference.of(IndexSettings.class), builder -> builder.withField("_DESERIALIZER")) //
|
||||||
hints.serialization().registerType(java.util.HashMap.class);
|
.registerType(TypeReference.of(PutMappingRequest.class), builder -> builder.withField("_DESERIALIZER")) //
|
||||||
|
.registerType(TypeReference.of(RuntimeFieldType.class), builder -> builder.withField("_DESERIALIZER"))//
|
||||||
|
.registerType(TypeReference.of(TypeMapping.class), builder -> builder.withField("_DESERIALIZER")) //
|
||||||
|
;
|
||||||
|
|
||||||
|
hints.serialization() //
|
||||||
|
.registerType(org.apache.http.impl.auth.BasicScheme.class) //
|
||||||
|
.registerType(org.apache.http.impl.auth.RFC2617Scheme.class) //
|
||||||
|
.registerType(java.util.HashMap.class) //
|
||||||
|
;
|
||||||
|
|
||||||
|
hints.resources() //
|
||||||
|
.registerPattern("co/elastic/clients/version.properties") //
|
||||||
|
;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
org.springframework.aot.hint.RuntimeHintsRegistrar=\
|
org.springframework.aot.hint.RuntimeHintsRegistrar=\
|
||||||
org.springframework.data.elasticsearch.aot.ElasticsearchRuntimeHints,\
|
org.springframework.data.elasticsearch.aot.SpringDataElasticsearchRuntimeHints,\
|
||||||
org.springframework.data.elasticsearch.client.elc.aot.ElasticsearchClientRuntimeHints, \
|
org.springframework.data.elasticsearch.client.elc.aot.ElasticsearchClientRuntimeHints, \
|
||||||
org.springframework.data.elasticsearch.repository.aot.RepositoryRuntimeHints
|
org.springframework.data.elasticsearch.repository.aot.RepositoryRuntimeHints
|
||||||
|
Loading…
x
Reference in New Issue
Block a user