Dave Syer
dd7d587ea8
Add tests to assert behaviour of actuator endpoints with context path
...
See gh-4401
9 years ago
Dave Syer
7d04ca1e1b
Add tests to assert behaviour of actuator endpoints with context path
...
See gh-4401
9 years ago
Stephane Nicoll
77190f126a
Create dedicated section for property conversion
...
See gh-4604
9 years ago
Dave Syer
cccc3867eb
Allow users to customize authentication entry point in OAuth2 SSO
...
The SsoSecurityConfigurer that gets added when a user has a custom
WebSecurityConfigurer with @EnableOAuth2Sso is quite opinionated, and
this is preventing users from custimizing the exception handling in the
customized UI security. This change makes it less opinionated, using
request matchers to configure the default instead of ovewriting the
single authentication entry point.
Also adds an entry point responding with a 401 for XHR clients (just like
the vanilla HTTP Basic auth).
Fixes gh-4629
9 years ago
Stephane Nicoll
e19d9ff09d
Fix gradle config for the bootRun task
...
Closes gh-4627
9 years ago
Stephane Nicoll
141907c65f
Merge branch '1.2.x'
...
# Conflicts:
# spring-boot-tools/spring-boot-configuration-processor/src/main/java/org/springframework/boot/configurationprocessor/ConfigurationMetadataAnnotationProcessor.java
# spring-boot-tools/spring-boot-configuration-processor/src/test/java/org/springframework/boot/configurationprocessor/ConfigurationMetadataAnnotationProcessorTests.java
9 years ago
Stephane Nicoll
ae13082e0d
Generate meta-data for nested Lombok types
...
Closes gh-4397
9 years ago
Stephane Nicoll
89aba8b3d8
Merge branch '1.2.x'
9 years ago
Stephane Nicoll
8ede966708
Harmonize java.mail dependency management
...
Closes gh-4588
9 years ago
Stephane Nicoll
9c412232d5
Improve log message with active profiles
...
Closes gh-4612
9 years ago
Stephane Nicoll
1ff070f6e9
Fix broken build
9 years ago
Stephane Nicoll
091478e0fd
Disable ehcache statistics if necessary
...
`EhCacheStatisticsProvider` uses the `StatisticsGateway` API introduced
in ehcache 2.7 (march 2013). If an older ehcache version is present, we
should back-off as this class is not available.
Closes gh-4621
9 years ago
Dave Syer
d6a424f94c
Add support for UTF-8 in application.properties
...
Fixes gh-4622
9 years ago
Stephane Nicoll
9a60f740b0
Merge pull request #4617 from eddumelendez/mybatis-doc
...
* pr/4617:
Add reference to mybatis-spring-boot project
9 years ago
Eddú Meléndez
74654f4877
Add reference to mybatis-spring-boot project
...
Closes gh-4617
9 years ago
Stephane Nicoll
a414ba8f9d
Merge branch '1.2.x'
9 years ago
Stephane Nicoll
e5ea0252cd
Upgrade to commons-collections 3.2.2
...
Closes gh-4520
9 years ago
Stephane Nicoll
ccd9feae97
Merge pull request #4608 from jadekler/batch_config_public
...
* pr/4608:
BasicBatchConfigurer is public again
9 years ago
Jean de Klerk
91a10e12b6
BasicBatchConfigurer is public again
...
Closes gh-4533
Closes gh-4608
9 years ago
Stephane Nicoll
095e7291d8
Merge branch '1.2.x'
9 years ago
Stephane Nicoll
d9f09e46f8
Cherry-pick 398d06e
...
Fixed initially in #3725
The target attribute is effectively checked for null beforehand so this
additional defensive check can be removed.
Closes gh-4567
9 years ago
Stephane Nicoll
0c387a82b7
Add datasource meta-data for Commons DBCP2
...
Closes gh-4562
9 years ago
Stephane Nicoll
e57244d8bc
Merge branch '1.2.x'
9 years ago
Dimitri
c605675b7a
Fix wrong class reference
...
Closes gh-4551
9 years ago
Stephane Nicoll
67c75bb6bc
Merge pull request #4571 from mkopylec/master
...
* pr/4571:
Add ref to reCAPCTHA Spring Boot Starter
9 years ago
Mariusz Kopylec
51f352e8ba
Add ref to reCAPCTHA Spring Boot Starter
...
Closes gh-4571
9 years ago
Stephane Nicoll
58b84936cf
Merge pull request #4572 from izeye/polish-20151121
...
* pr/4572:
Polish
9 years ago
Johnny Lim
8ec00c35bf
Polish
...
Closes gh-4572
9 years ago
Stephane Nicoll
31d7ebc96e
Merge pull request #4554 from izeye/polish-20151119
...
* pr/4554:
Polish
9 years ago
Johnny Lim
efff4a0051
Polish
...
Closes gh-4554
9 years ago
Stephane Nicoll
30791599a5
Merge pull request #4561 from vpavic/update-docs
...
* pr/4561:
Fix incorrect default value for executable flag
9 years ago
Vedran Pavic
fc868155ff
Fix incorrect default value for executable flag
...
Closes gh-4561
9 years ago
Dave Syer
8708a07a98
Ensure RestTemplate interceptors remain mutable
...
Fixes gh-4553
9 years ago
Stephane Nicoll
3dda029c64
Merge pull request #4537 from izeye/polish-20151118
...
* pr/4537:
Polish
9 years ago
Johnny Lim
36ed0f5c20
Polish
...
Closes gh-4537
9 years ago
Stephane Nicoll
6146817ba3
Polish
9 years ago
Andy Wilkinson
ea8107b6a5
Merge branch '1.2.x'
9 years ago
Stephane Nicoll
dd4b9b1788
Merge pull request #4509 from izeye/else
...
* pr/4509:
Add missing else statement
9 years ago
Johnny Lim
fde70909ce
Add missing else statement
...
Closes gh-4509
9 years ago
Stephane Nicoll
5d8410f694
Merge pull request #4503 from izeye/polish-20151116
...
* pr/4503:
Polishing
9 years ago
Johnny Lim
da16d6d306
Polishing
...
Closes gh-4503
9 years ago
Stephane Nicoll
d4a7c09b4e
Polish
9 years ago
Andy Wilkinson
2fe0819495
Isolate multiple Undertow deployments
...
Previously, UndertowEmbeddedServletContainerFactory always used
Undertow’s default ServletContainer. This meant that if there were two
UndertowEmbeddedServletContainers created, they would share the same
ServletContainer and the second one that was created would overwrite
the deployment for the first. This resulted in a async request
handling failing as the attempt to look up the deployment for the
first embedded Undertow instance would incorrectly find the deployment
for the second.
This commit fixes the problem by ensuring that each
UndertowEmbeddedServletContainerFactory uses a separate Undertow
ServletContainer instance.
Closes gh-4329
9 years ago
Stephane Nicoll
169fd53976
Fix typo
...
Closes gh-4515
9 years ago
Stephane Nicoll
14e7b10310
Fixup version numbers following release
9 years ago
Spring Buildmaster
3f6f57a80e
Next Development Version
9 years ago
zhanhb
64ec67e6a4
Upgrade to Mongodb Java Client 2.13.3
...
Closes gh-4498
9 years ago
Andy Wilkinson
c055a68874
Revert "Upgrade to Joda-time 2.9.1"
...
This reverts commit 21e40eac10
.
See gh-4479
9 years ago
Andy Wilkinson
5def2ec75c
Revert "Upgrade to MariaDB 1.3.0"
...
This reverts commit 088c58b80a
.
See gh-4482
9 years ago
Stephane Nicoll
17bb3ab8c8
Merge pull request #4501 from vpavic/fix-json-syntax
...
* pr/4501:
Fix bad JSON syntax
9 years ago