Stéphane Nicoll
Stéphane Nicoll
The current `DubboProperties` uses Javadoc tags (such as `{@link}`) in field descriptions. The annotation processor doesn't clean those and write the description as is in the metadata. This is not...
The `nameServer` property ultimately maps to `ClientConfig#setNamesrvAddr` that requires a `host:port` pair separated by `;` I think it would be nicer to not expose that complexity back to the configuration....
Using `1.2.0` I get this warning on startup > 2017-02-01 10:12:02.775 WARN 34902 --- [ main] o.s.c.a.ConfigurationClassPostProcessor : Cannot enhance @Configuration bean definition 'com.vaadin.spring.VaadinConfiguration' since its singleton instance has been...
See https://github.com/spring-projects/spring-boot/issues/27577 Looking at both the javadoc of the class and the reference guide, I haven't found a place where the need for enabling that feature on a custom `ObjectMapper`...
Right now, `MessagingBeanPostProcessor` is creating bean definitions. In order to do that, it has to inject the `BeanFactory` and downcast it to a `BeanRegistry`, see https://github.com/spring-projects/spring-integration/blob/7f631fc947c1b4c5f284b887aa144ba4c100486c/spring-integration-core/src/main/java/org/springframework/integration/config/annotation/MessagingAnnotationPostProcessor.java#L233 As a side effect...
I am creating an empty Spring Boot app with the default stormpath starter. When I run the application, I get the following: ``` 2017-01-31 08:26:30.943 ERROR 13032 --- [ main]...
In the standard "Complete this guide section" there is a link in this sentence: > Download and unzip the source repository for this guide, or clone it using Git: It...
Spring Cloud's bootstrap context is problematic for things that need to react to the environment early, such as the wavefront integration. Could you please upgrade to a more recent version...
We are using Animal Sniffer on the Spring Framework to check that we don't use any Java7 or 8 API in our code base (except in specific areas that are...
There are a number of things in `SpringApplication` that are inferred at runtime based on the classpath, the environment or another property. Some of those checks do not work properly...