- 05 Dec, 2013 4 commits
-
-
Dave Syer authored
When management endpoints are on a different port the HandlerMappings are restricted to a single EndpointHandlerMapping, so the error controller (which is a normal @Controller with @RequestMappings) does not get mapped. Fixed by addinga shim Endpoint on "/error" that delegates to the ErrorController (which interface picks up an extra method).
-
Dave Syer authored
-
Dave Syer authored
Default behaviour unchanged, but if you want to ignore validation errors you can switch them off for indivdual beans now. Fixes gh-144
-
Dave Syer authored
Fixes gh-145
-
- 04 Dec, 2013 4 commits
-
-
Dave Syer authored
-
Dave Syer authored
-
Dave Syer authored
-
Andy Wilkinson authored
Previously, the default classpath was empty. Now, in the absence of the user providing a classpath via the -cp option, the default classpath will be ".". If the user does specify a classpath, the classpath that's used will be exactly what they have specified, i.e. "." will no longer be on the classpath unless specified by the user. The app sample integration test has been updated to verify that "." is only the classpath by default. Fixes #115
-
- 03 Dec, 2013 2 commits
-
-
Phillip Webb authored
-
Dave Syer authored
-
- 02 Dec, 2013 3 commits
-
-
Dave Syer authored
Fixes gh-139
-
Ivan Sopov authored
-
Dave Syer authored
-
- 29 Nov, 2013 13 commits
-
-
Dave Syer authored
ServerProperties formerly had an @OnMissingBeanCondition that didn't restrict the hierarchy. It also asserts that the current context (not including parents) contains such a bean. This led to an inevitable failure when there was an existing instance in the parent context. Fixed by a) searching only the current context, b) not adding a ServerProperties bean if the context is not a web app.
-
Dave Syer authored
-
Dave Syer authored
-
Dave Syer authored
-
Dave Syer authored
-
Dave Syer authored
-
Christian Dupuis authored
-
Christian Dupuis authored
This information should probably be also available from the console and log similar to AutoConfigurationReport.
-
Christian Dupuis authored
-
Christian Dupuis authored
-
Dave Syer authored
The JreProxySelector is used it to adjust the repositories as they are added to the GrapeEngine. It looks at standard System proeprties like http.proxyHost and http.proxyPort and in addition consults standard JRE Authenticator features for credentials (falling back to System properties http.proxyUser and http.proxyPassword). Fixes gh-136
-
Dave Syer authored
-
Dave Syer authored
-
- 28 Nov, 2013 11 commits
-
-
Dave Syer authored
-
Dave Syer authored
-
Dave Syer authored
-
Dave Syer authored
-
Dave Syer authored
-
Dave Syer authored
Example: @RunWith(SpringJUnit4ClassRunner.class) @SpringApplicationConfiguration(classes = SampleDataJpaApplication.class) public class CityRepositoryIntegrationTests { @Autowired CityRepository repository; Fixes gh-66.
-
Dave Syer authored
-
Dave Syer authored
-
Dave Syer authored
-
Dave Syer authored
-
Dave Syer authored
Aether apparently doesn't use the java.net.* APIs for TCP connections so it doesn't notice when a user sets -Dhttp.Proxy*. To fix it is painful, and leads me to suspect that actually we might want to parse a settings.xml at some point (however unpalatable that is). For now I have added a Proxy to all RemoteRepository instances that we create in the CLI if the user has set -Dhttp.proxyHost (and/or -Dhttps.proxyHost for a secure repository). TODO: authentication. Is there a standard way to specify that globally via system properties. TODO: maybe use per-repository settings if provided (e.g. in settings.xml).
-
- 27 Nov, 2013 3 commits