Commit Graph

5193 Commits (1fab23c51463c1b034af67125a091d547759b6a0)
 

Author SHA1 Message Date
Phillip Webb 9b78f5d52e Replace @ConditionalOnExpression conditions
Replace @ConditionalOnExpression usage in auto-configuration in favor
of faster direct Environment access.
10 years ago
Phillip Webb 71dbec381a Create @ManagementContextConfiguration annotation
Replace the previously used `EndpointWebMvcConfiguration`
`spring.factories` key with a dedicated ManagementContextConfiguration
annotation.

Also renamed the EndpointWebMvcHypermediaConfiguration and
EndpointWebMvcConfiguration classes to make it clearer that they are
for the management context.

See gh-3345
10 years ago
Phillip Webb b2fcd77d93 Rework EndpointWebMvcAutoConfiguration port logic
Update the `ManagementServerPort` detection logic to attempt direct
property resolution before looking for a local property bean
definition. Bean definitions provided by auto-configuration classes
are ignored.

This change allow `OnManagementMvcCondition` to use the
`ManagementServerPort` to determine when `EndpointWebMvcConfiguration`
should apply (removing the need to create a temporary context).

See gh-3345
10 years ago
Phillip Webb e885dab752 Polish 10 years ago
Phillip Webb 4c8c376829 Refactor EndpointPathRequestMatcher
Refactor `EndpointPathRequestMatcher` so that the side effect of setting
`endpointHandlerMapping` in the parent class is a little more obvious.
10 years ago
Phillip Webb c8137ef3f8 Remove `data` from .gitignore
Not sure why it's there but it's far too broad.
10 years ago
Andy Wilkinson 2263095bbb Update launch.script to match chkconfig start levels with defaults
Closes gh-3419
10 years ago
Andy Wilkinson 5fc781e7e2 Upgrade to Spring Integration 4.2.0.M2
Closes gh-3286
10 years ago
Dave Syer 4581c5a273 Rationalize AMQP sample 10 years ago
Stephane Nicoll 406d4ea771 Polish 10 years ago
Stephane Nicoll fa9bb21a0e Merge pull request #3431 from lucassaldanha/master
* pr/3431:
  Polish AMQP doc
  Add AMQP section to the documetation
10 years ago
Stephane Nicoll 4602558a73 Polish AMQP doc
Closes gh-3431
10 years ago
Lucas Saldanha 0ce7be4413 Add AMQP section to the documetation
Closes gh-3348
10 years ago
Stephane Nicoll 61c5258246 Merge pull request #3429 from izeye/patch-32
* pr/3429:
  Fix deployment title section
10 years ago
izeye 8c9f7247d9 Fix deployment title section
Closes gh-3429
10 years ago
Stephane Nicoll 6f25884ef7 Merge pull request #3428 from izeye/patch-31
* pr/3428:
  Fix typo
10 years ago
izeye dd77ab90a0 Fix typo
Closes gh-3428
10 years ago
Phillip Webb 5fd947027e Merge pull request #3370 from izeye/patch-29
* pr/3370:
  Fix Restarter.setEnabled() to use parameter
10 years ago
izeye 7e49a02356 Fix Restarter.setEnabled() to use parameter
Closes gh-3370
10 years ago
Phillip Webb 36faae95f9 Merge pull request #3374 from mdeinum/boot-3365
* pr/3374:
  Extend TemplateViewResolverProperties for Groovy
10 years ago
Marten Deinum a3e62676af Extend TemplateViewResolverProperties for Groovy
Use AbstractTemplateViewResolverProperties as the base class for
GroovyTemplateProperties since the Spring GroovyMarkupViewResolver is
an AbstractTemplateViewResolver.

The auto-configuration for Groovy is now more aligned with the existing
Freemarker and Velocity auto-configuration, with a `resourceLoaderPath`
property being used instead of `prefix`.

Fixes gh-3365
Closes gh-3374
10 years ago
Phillip Webb 098392d77a Merge pull request #3414 from JamieFarrelly/patch-1
* pr/3414:
  Clarify MultipartConfigFactory javadoc
10 years ago
JamieFarrelly 205f6d92e7 Clarify MultipartConfigFactory javadoc
Update MultipartConfigFactory javadoc to make it clear that you are
passing in the size in bytes.

Fixes gh-3414
10 years ago
Phillip Webb 155f04ef30 Switch ConfigFileAppListener to use DeferredLog
Update ConfigFileApplicationListener to use the recently introduced
DeferredLog class rather than storing its own log messages.
10 years ago
Phillip Webb 0cf6efca4f Polish 10 years ago
Stephane Nicoll afd357f45a Reduce ConfigFileApplicationListener logs
Previously, all attempts to log a configuration file were logged at DEBUG
level which lead to a lot of noise as Spring Boot looks in many places by
default.

We now only log the files that are effectively found at DEBUG level and
all failed attempts at TRACE level.

Closes gh-3129
10 years ago
Dave Syer 067c7a295c Extra logging detail if file is empty 10 years ago
Stephane Nicoll e307fe3137 Honor outputDirectory properly
Previously, if the repackaged file was different from the main artifact
of the build, the maven plugin wrongly considered that it should attach
the file with a classifier.

The outputDirectory is honored properly now, regardless of the fact a
classifier is defined or not.

Fixes gh-3177
10 years ago
Stephane Nicoll 17582de439 Merge pull request #3409 from eddumelendez/gh-3408
* pr/3409:
  Polish
  Add mail server connection check
10 years ago
Stephane Nicoll eb10275f5a Polish
Polish 383e94c to validate any `JavaMailSenderImpl` and not only the
one that has been created by auto-configuration.

Closes gh-3409
10 years ago
Eddú Meléndez 6f31080f78 Add mail server connection check
If a `JavaMailSenderImpl` is available, check that the underlying mail
server is available on startup. Add a `spring.mail.test-connection`
property to control this behaviour.

Closes gh-3408
10 years ago
Stephane Nicoll 0eada5df86 Merge branch '1.2.x' 10 years ago
Dave Syer 20091b75c9 Tidy up some oauth2 features and add a test for request-scoped context 10 years ago
Stephane Nicoll 774474f8b7 Add hint providers for core properties
Closes gh-3322
10 years ago
Stephane Nicoll 2da1d37e97 Add profile name provider 10 years ago
Stephane Nicoll 162cbdd5cb Fail the build if the meta-data are invalid
Make sure to fail the build with a proper compilation error message if
the user-defined meta-data are invalid. For now, this takes care of the
JSON format but other checks may be added in the future.

Closes gh-3329
10 years ago
Stephane Nicoll 2126c7774a Add a note about transactional listeners
Clarify how the default JMS listener container factory is created if none
exists with regards to transactions.

Issue: SPR-3407
10 years ago
Andy Wilkinson 4ad23166ea Use a Java 7-compatible version of org.json:json and remove duplicate
Closes gh-3412
10 years ago
Andy Wilkinson 8be13f92de Use a property for the version of the WebJars HAL Browser dependency
See gh-1390
10 years ago
Stephane Nicoll ecbe4da251 Add reference to HA JDBC starter 10 years ago
Stephane Nicoll 63bec75cc9 Remove reference to SNAPSHOT doc 10 years ago
Phillip Webb ca56fbbcf0 Fix malformed RandomValuePropertySource javadoc
See gh-3391
10 years ago
Matt Benson 36d36f97bd Improve RandomValuePropertySource
Rework RandomValuePropertySource class javadoc, particularly the
description of the `random.int` range suffix.

Also add support for range based random longs.

Fixes gh-3391
10 years ago
Phillip Webb 35379f627a Polish 10 years ago
Phillip Webb e8085016ba Polish Actuator hypermedia support 10 years ago
Phillip Webb 67dd164dc3 Add actuator-docs to the full build 10 years ago
Stephane Nicoll bcb9ad8f64 Merge pull request #3416 from izeye/typo-20150705
* pr/3416:
  Fix typo
10 years ago
izeye 99cd9bdc31 Fix typo
Closes gh-3416
10 years ago
Stephane Nicoll b81c6398d7 Merge pull request #3395 from izeye/patch-30
* pr/3395:
  Remove System.out.println()
10 years ago
izeye e98b2a1a33 Remove System.out.println()
Closes gh-3395
10 years ago