Polish
This commit is contained in:
@@ -207,7 +207,7 @@ public class JerseyAutoConfiguration implements ServletContextAware {
|
||||
};
|
||||
}
|
||||
|
||||
@Configuration
|
||||
@Configuration(proxyBeanMethods = false)
|
||||
@ConditionalOnClass({ JaxbAnnotationIntrospector.class, XmlElement.class })
|
||||
static class JaxbObjectMapperCustomizer {
|
||||
|
||||
|
||||
@@ -109,31 +109,31 @@ class ElasticsearchDataAutoConfigurationTests {
|
||||
.contains("reactiveElasticsearchTemplate"));
|
||||
}
|
||||
|
||||
@Configuration
|
||||
@Configuration(proxyBeanMethods = false)
|
||||
static class CustomTransportTemplate {
|
||||
|
||||
@Bean
|
||||
ElasticsearchTemplate elasticsearchTemplate() {
|
||||
public ElasticsearchTemplate elasticsearchTemplate() {
|
||||
return mock(ElasticsearchTemplate.class);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@Configuration
|
||||
@Configuration(proxyBeanMethods = false)
|
||||
static class CustomRestTemplate {
|
||||
|
||||
@Bean
|
||||
ElasticsearchRestTemplate elasticsearchTemplate() {
|
||||
public ElasticsearchRestTemplate elasticsearchTemplate() {
|
||||
return mock(ElasticsearchRestTemplate.class);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@Configuration
|
||||
@Configuration(proxyBeanMethods = false)
|
||||
static class CustomReactiveRestTemplate {
|
||||
|
||||
@Bean
|
||||
ReactiveElasticsearchTemplate reactiveElasticsearchTemplate() {
|
||||
public ReactiveElasticsearchTemplate reactiveElasticsearchTemplate() {
|
||||
return mock(ReactiveElasticsearchTemplate.class);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user