Polish
This commit is contained in:
parent
985c8f7598
commit
54c72cf39f
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue