Commit Graph

8505 Commits (753a7e1d33140af6828546356c02298eabb59f1e)
 

Author SHA1 Message Date
Phillip Webb 753a7e1d33 Document how to to customize the TestRestTemplate
Update the reference documentation and add some additional Javadoc to
provide hints on how to customize the `TestRestTemplate`.

Fixes gh-6465
8 years ago
Phillip Webb 0660f52abb Merge pull request #6482 from chadluo/patch-1
* patch-1:
  Unescape quotation marks in JavaDoc
8 years ago
Chad 18dd125059 Unescape quotation marks in JavaDoc
Closes gh-6482
8 years ago
Phillip Webb 296dc7132b Allow JSON Testers to be `@Autowired`
Switch `@AutoConfigureJsonTesters` to use regular `@Autowired` injection
for JSON testers. Prior to this commit JSON Tester fields were
initialized directly which caused IDE issues and was also a little
confusing.

Fixes gh-6451
8 years ago
Andy Wilkinson a44cc196de Merge branch '1.3.x' 8 years ago
Andy Wilkinson 7e116f6bab Upgrade to thymeleaf-extras-conditionalcomments 2.1.2.RELEASE
Closes gh-6480
8 years ago
Andy Wilkinson 1682d7b9d4 Upgrade to Jedis 2.8.2
Closes gh-6481
8 years ago
Andy Wilkinson 26c2c54a47 Upgrade to Spring REST Docs 1.1.1.RELEASE
Closes gh-6479
8 years ago
Andy Wilkinson 4e84111b43 Upgrade to Selenium 2.53.1
Closes gh-6478
8 years ago
Andy Wilkinson 5b40a276dc Upgrade to Neo4j OGM 2.0.4
Closes gh-6477
8 years ago
Andy Wilkinson 222fda447c Upgrade to jOOQ 3.8.4
Closes gh-6476
8 years ago
Andy Wilkinson 9c98c8cbc4 Upgrade to Elasticsearch 2.3.4
Closes gh-6475
8 years ago
Andy Wilkinson cdcc8a411d Upgrade to Jetty 9.3.11.v20160721
Closes gh-6474
8 years ago
Andy Wilkinson ec7a9a32b9 Upgrade to AssertJ 2.5.0
Closes gh-6473
8 years ago
Andy Wilkinson 58ccd18253 Upgrade to Log4J2 2.6.2
Closes gh-6472
8 years ago
Andy Wilkinson e15353bbd6 Upgrade to ActiveMQ 5.13.4
Closes gh-6471
8 years ago
Andy Wilkinson ec3084c3d6 Upgrade to App Engine API 1.9.40
Closes gh-6470
8 years ago
Andy Wilkinson 77b0b5ba00 Upgrade to Jackson 2.8.1
Closes gh-6469
8 years ago
Andy Wilkinson e9fd90af87 Merge pull request #6459 from Kazuki Shimizu
* gh-6459:
  Upgrade to Lombok 1.16.10
8 years ago
Kazuki Shimizu 7b12183e7b Upgrade to Lombok 1.16.10
Closes gh-6459
8 years ago
Andy Wilkinson e683e8f062 Merge branch '1.3.x' 8 years ago
Andy Wilkinson 4a40f8d5c4 Upgrade to Postgresql 9.4.1209.jre7
Closes gh-6468
8 years ago
Andy Wilkinson 9a02252ee6 Upgrade to Freemarker 2.3.25-incubating
Closes gh-6467
8 years ago
Andy Wilkinson 11ce8d79ad Upgrade to Jetty 9.2.18.v20160721
Closes gh-6466
8 years ago
Andy Wilkinson c308aa7ebf Merge branch '1.3.x' 8 years ago
Andy Wilkinson f3353be428 Merge pull request #6458 from Artem Bilan
* gh-6458:
  Upgrade to Spring Integration 4.2.9.RELEASE
8 years ago
Artem Bilan 5969c5dcc5 Upgrade to Spring Integration 4.2.9.RELEASE
Closes gh-6458
8 years ago
Brian Clozel a282710fc9 Add Locale to Charset Mapping for Servlet containers
This commit adds a new configuration key:

    spring.http.encoding.mapping.<locale>=<charset>

This allows to specify which default charset should be used for any
given Locale, if none has been provided already in the response itself.
This applies to all supported embedded servlet containers.

Fixes gh-6453
8 years ago
Stephane Nicoll 01f73d257f Merge pull request #6462 from vpavic:docs
* pr/6462:
  Move "Using jOOQ" section under "Working with SQL databases" section
8 years ago
Vedran Pavic 7669c3c468 Move "Using jOOQ" section under "Working with SQL databases" section
Closes gh-6462
8 years ago
Phillip Webb 769d393c7a Merge pull request #6456 from artembilan/SI-4.3.1
* SI-4.3.1:
  Upgrade to Spring Integration 4.3.1
8 years ago
Artem Bilan c59fa6881f Upgrade to Spring Integration 4.3.1
Closes gh-6456
8 years ago
Phillip Webb 9fa85a9336 Merge pull request #6449 from kazuki43zoo/multi-datasource
* multi-datasource:
  Add JdbcTemplate only on single DataSource
  Add TransactionManager only on single DataSource
8 years ago
Kazuki Shimizu 5ecb68b226 Add JdbcTemplate only on single DataSource
Update auto-configuration logic so that a `JdbcTemplate`
is only added when there is a single candidate DataSource bean.

Closes gh-6449
8 years ago
Kazuki Shimizu e0adacbeae Add TransactionManager only on single DataSource
Update auto-configuration logic so that a `DataSourceTransactionManager`
is only added when there is a single candidate DataSource bean.

See gh-6449
8 years ago
Phillip Webb 496b3a8d75 Relocate FileWriters to `spring-boot`
Move ApplicationPidFileWriter and EmbeddedServerPortFileWriter to the
core spring-boot project since they're not really tied to the actuator.

Fixes gh-6398
8 years ago
Phillip Webb 4a1e0d4544 Extend @AutoConfigureMockMvc print support
Update @AutoConfigureMockMvc to support extended print options including
`System.err` and `log.debug`. In addition the "default" print option
can now be overridden by adding `spring.test.mockmvc.print=...` to
`src/test/resources/application.properties`.

Fixes gh-6455
8 years ago
Phillip Webb 8355d8516b Add @UnmappedPropertyValue support
Update @PropertyMapping support to allow single enum values to be marked
as an @UnmappedPropertyValue. This change is primarily so that users can
replace "default" values globally for across all tests.

See gh-6455
8 years ago
Phillip Webb ab9834a92e Merge pull request #6442 from izeye/checkstyle
* checkstyle:
  Remove severity elements from checkstyle.xml
8 years ago
Johnny Lim 65128c0ad1 Remove severity elements from checkstyle.xml
Remove `error` severity elements from `checkstyle.xml` and rely on the
default setting instead.

Closes gh-6442
8 years ago
Phillip Webb 254b099bfd Polish 8 years ago
Phillip Webb b615070535 Merge branch '1.3.x' 8 years ago
Phillip Webb e8bedacc91 Remove optional from json-simple managed dependency
Update `spring-boot-dependencies` so that `json-simple` does not include
an `<option>true</optional>` element.

Fixes gh-6450
8 years ago
Phillip Webb 8e22f47916 Don't limit collection sizes in property binding
Update PropertiesConfigurationFactory so that collections can grow
beyond 256 items. Prior to this commit configuration property binding
used the default `DataBinder.autoGrowNestedPaths` setting of 256.

Fixes gh-6436
8 years ago
Stephane Nicoll 51862f3c81 Merge pull request #6446 from joinfaces:joinfaces-2.0.0
* pr/6446:
  Upgrade jsf-spring-boot-starter references
8 years ago
Marcelo Romulo Fernandes f44573d06e Upgrade jsf-spring-boot-starter references
Closes gh-6446
8 years ago
Andy Wilkinson f038982b36 Merge pull request #6437 from Johnny Lim
* gh-6437:
  Align message with regex for AbstractMvcEndpoint.path
8 years ago
Johnny Lim 68fe8a58b8 Align message with regex for AbstractMvcEndpoint.path
Closes gh-6437
8 years ago
Andy Wilkinson a1797879e6 Add a FailureAnalyzer for BeanNotOfRequiredTypeException
Closes gh-6434
8 years ago
Andy Wilkinson fe22609096 Test that temp file has been deleted before triggering heap dump
The MBean requires that a file does not exist at the location to which
it’s dumping the heap. This commit updates the test to ensure that the
temporary file that’s created to get a location for the heap dump file
is deleted before asking the MBean to dump the heap to that location.
8 years ago