Commit 54c72cf3 authored by Stephane Nicoll's avatar Stephane Nicoll

Polish

parent 985c8f75
......@@ -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);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment