- 28 Apr, 2017 5 commits
-
-
Brian Clozel authored
Thymeleaf 3.0 implements the Spring 5.0 view infrastructure for WebMVC and the new WebFlux framework. This commit adds auto-configuration for the WebFlux support. In that process, the configuration property for `spring.thymeleaf` has been changed to add `spring.thymeleaf.servlet` and `spring.thymeleaf.reactive` for MVC/WebFlux specific properties. Now that the `spring-boot-starter-thymeleaf` does not only support Spring MVC, the transitive dependency on `spring-boot-starter-web` is removed from it. Fixes gh-8124
-
Stephane Nicoll authored
-
Stephane Nicoll authored
* pr/9020: Upgrade to Spring Kafka 2.0.0.M1
-
Artem Bilan authored
Closes gh-9020
-
Phillip Webb authored
See gh-9000
-
- 27 Apr, 2017 35 commits
-
-
Madhura Bhave authored
Add a test to ensure that the new binder can bind correctly to a Set. Closes gh-1415
-
Phillip Webb authored
Closes gh-9000
-
Madhura Bhave authored
Remove the deprecated relaxed binder code that has now been replaced with the configuration properties binder. Closes gh-9000
-
Madhura Bhave authored
Add a test to ensure that the new binder can bind correctly to a Map<String,String[]>. Closes gh-3789
-
Madhura Bhave authored
Add a test to ensure that the updated configuration properties work correctly binds environment sources in the `/info` endpoint. Closes gh-7388
-
Madhura Bhave authored
Add a test case to show that the updated configuration properties binder correctly binds environment variables to complex maps. Closes gh-8902
-
Madhura Bhave authored
A test to ensure that the updated configuration properties support correctly expands placeholders using mapped properties. Prior to the updated support an `application.properties` file of the form: my.prefix.some-url=http://github.com my.prefix.login-url=${my.prefix.some-url}/login Would not correctly expand the placeholder against the environment variable `MY_PREFIX_SOME_URL` Closes gh-2496
-
Phillip Webb authored
Remove the `relaxed` attribute from `@ConditionalOnProperty` and instead rely on the direct configuration property source relaxed name support. Closes gh-9003
-
Madhura Bhave authored
Extend `BindFailureAnalyzer` to support the exceptions thrown by the new configuration properties `Binder`. Origin information is now also reported when available. Closes gh-8934
-
Madhura Bhave authored
Update `spring-boot-samples` to use the new configuration properties support. See gh-9000
-
Madhura Bhave authored
Update `spring-boot-devtools` to use the new configuration properties support. See gh-9000
-
Madhura Bhave authored
Update `spring-boot-actuator` to use the new configuration properties support. See gh-9000
-
Madhura Bhave authored
Update `spring-boot-autoconfigure` to use the new configuration properties support. See gh-9000
-
Madhura Bhave authored
Update `spring-boot-test` to use the new configuration properties support. See gh-9000
-
Madhura Bhave authored
Update `spring-boot` to use the new configuration properties support. See gh-9000
-
Phillip Webb authored
Remove `ConfigurationProperySource` from `PropertySourcesPropertyValues` so that the deprecated code to continues to work. See gh-4910
-
Phillip Webb authored
Update `SpringApplication` to automatically attached the `ConfigurationPropertiesSource` when a `SpringApplication` runs. See gh-4910
-
Phillip Webb authored
Create a new `Binder` class specifically designed to bind properties from one or more `ConfigurationPropertySources` to an object. The binder provides a replacement for `RelaxedBinder` and attempts to fix the limitations of the previous solution. Closes gh-8868
-
Phillip Webb authored
Add a new abstraction that represents a source for configuration properties. The new source is similar to the `Environment` abstraction provided by Spring Framework but follows a stricter set of rules. The `ConfigurationPropertySource` provides a uniform view onto a source and will help to move responsibility for accessing properties in a "relaxed" way away from the caller. The `ConfigurationPropertyName` class enforces strict naming rules that callers must follow when accessing properties. Configuration names are lowercase, dot separated and may contain dashes. In addition "indexed" name elements may be defined by using square brackets. Mapping is provided to existing Spring PropertySources implemented with the relaxed rules that users are used to. For example the configuration property `server.local-host` can still be written in a property files as `server.localHost` or in an environment variable as SERVER_LOCALHOST. Closes gh-4910
-
Phillip Webb authored
Move the `Origin` and related classes from `o.s.boot.env` to `o.s.boot.orgin` and extend support. The concept of an origin can now be used outside of just the Spring Environment abstraction. Closes gh-9001
-
Phillip Webb authored
Deprecate `RelaxedDataBinder`, `RelaxedPropertyResolver` and related classes in preparation for the updated configuration properties binder work. See gh-9000
-
Phillip Webb authored
Update `SpringApplication` so that the `sources` property is independent to the primary source provided on construction. Prior to this commit the sources property was a little unusual in that calling set would add to the existing collection. Closes gh-8910
-
Phillip Webb authored
-
Phillip Webb authored
-
Andy Wilkinson authored
See gh-9019
-
Phillip Webb authored
-
Phillip Webb authored
Drop `spring-social-web-thymeleaf3` dependency since it's been merged into `spring-social-web` as of Spring Social 2.0. Fixes gh-9017
-
Phillip Webb authored
* pr/9011: Remove Spring Session GemFire dependency Remove Spring Session Mongo support
-
Vedran Pavic authored
Remove Spring Session GemFire dependency since it is no longer supported in Spring Session 2.0. Closes gh-9011
-
Vedran Pavic authored
Remove auto-configuration support for Spring Session Mongo since it is no longer supported in Spring Session 2.0. See gh-9011
-
Phillip Webb authored
-
Phillip Webb authored
-
Phillip Webb authored
-
Stephane Nicoll authored
Closes gh-6013
-
Stephane Nicoll authored
-