Stephane Nicoll
19622e3b2d
Upgrade copyright
2016-07-04 12:42:54 +02:00
Juergen Hoeller
c6752e6023
Explicit note on self references
...
Issue: SPR-14402
2016-07-02 14:58:54 +02:00
Stephane Nicoll
716273df47
Polish
...
Closes gh-967
2016-07-01 11:15:32 +02:00
Stephane Nicoll
cac58738c9
Polish
...
Closes gh-1089
2016-07-01 10:58:15 +02:00
nkjackzhang
66fd86be33
Fix typo in asciidoc
...
See gh-1089
2016-07-01 10:47:06 +02:00
Sebastien Deleuze
64628dc8cb
Add CorsFilter documentation
2016-06-28 14:51:09 +02:00
nkjackzhang
5657283071
Fix typo in asciidoc
...
Closes gh-1092
2016-06-28 11:20:50 +02:00
Juergen Hoeller
4102c62734
Fixed ambiguous sentence in conditional cache documentation
...
Issue: SPR-14399
2016-06-26 00:13:53 +02:00
Stephane Nicoll
bcfc09a93c
Document sync attribute of Cacheable
...
Closes gh-14366
2016-06-16 13:14:53 +02:00
Sam Brannen
0815560c85
Migrate to Asciidoctor 1.5 syntax
...
Issue: SPR-14355
2016-06-11 12:51:38 +02:00
Sam Brannen
57ca8f5347
Document TestContext bootstrapping in the reference manual
...
Issue: SPR-11683
2016-06-09 21:50:57 +02:00
Sam Brannen
f0451294de
Improve formatting for test annotations in reference manual
2016-06-09 17:09:15 +02:00
Sam Brannen
53909a5333
Polish key abstractions section for the TCF
2016-06-09 17:09:15 +02:00
Stephane Nicoll
f7dd8e34b3
Polish contribution
...
Closes gh-1073
2016-06-09 10:38:16 +02:00
fisache
4465e4ff6c
Polish doc
...
See gh-1073
2016-06-09 10:35:06 +02:00
Juergen Hoeller
d1d29cf699
Documented support for new library and server generations
2016-06-08 15:23:06 +02:00
Sam Brannen
da051b87e6
Polish documentation for stereotype names
2016-06-08 14:38:58 +02:00
Sam Brannen
c9de6f23ef
Document web scope annotations in the reference manual
...
Issue: SPR-13994
2016-06-08 14:38:58 +02:00
Sam Brannen
99ae7e3bcb
Document web scope annotations in the reference manual
...
Issue: SPR-13994
2016-06-07 20:17:34 +02:00
Sam Brannen
47d77252d3
Document web scope annotations in the reference manual
...
Issue: SPR-13994
2016-06-07 19:07:38 +02:00
Sam Brannen
6804aad06f
Update reference manual regarding supported web scopes
2016-06-07 19:07:38 +02:00
Sam Brannen
01d234f9f3
Use composed @RequestMapping variants in the reference manual
...
Issue: SPR-13995
2016-06-07 18:06:14 +02:00
Sam Brannen
c121f460b1
Document composed @RequestMapping variants in the reference manual
...
Issue: SPR-13995
2016-06-07 17:26:57 +02:00
Sam Brannen
4432da3659
Update testing improvements in "What's New"
2016-06-07 16:32:42 +02:00
Juergen Hoeller
e7561b1d7c
Updated @Autowired documentation in terms of collection/map/array matching
...
Issue: SPR-14332
2016-06-06 17:14:10 +02:00
Kamil Szymanski
5a81727180
MVC docs polishing
2016-06-01 16:58:20 +02:00
Juergen Hoeller
d6284202f1
Reference documentation updates
...
Issue: SPR-14087
Issue: SPR-14272
Issue: SPR-13535
Issue: SPR-13843
Issue: SPR-14164
Issue: SPR-14167
2016-05-30 15:04:57 +02:00
Brian Clozel
250d82768f
Merge pull request #1050 from fj/patch-1
...
Remove potential XSS vulnerability in Freemarker documentation
2016-05-30 09:44:18 +02:00
Stephane Nicoll
917948deac
Polish SpEL documentation
...
Issue: SPR-14243
2016-05-27 10:30:38 +02:00
Rossen Stoyanchev
f4ab6d8d52
MockRestServiceServerBuilder can be re-used
...
Issue: SPR-14306
2016-05-26 09:48:16 -04:00
Rossen Stoyanchev
c2625f968c
Properly handle single-value map with @MatrixVariable
...
Issue: SPR-14294
2016-05-22 09:53:42 -04:00
John Feminella
2367f52aaf
Remove potential XSS attack in Freemarker example
...
Since the user controls the value of `spring.status.value`, you wouldn't want to echo unescaped values here in this form. Otherwise one could submit a value of, say, `"/> <script>alert("pwned")</script>`.
2016-05-05 14:23:14 -04:00
Sam Brannen
f09c7868d8
Polishing
2016-05-04 16:04:37 +02:00
Sam Brannen
64c388d524
Properly document avoiding false positives when testing with JPA
...
Prior to this commit, information regarding avoiding false positives
when testing with JPA had already been added to the Testing chapter of
the reference manual. However, the example did not work properly and
the accompanying text mixed concepts from Hibernate and JPA.
This commit fixes the @Autowired/@PersistenceContext bug, updates the
text, and marks each test as @Transactional in order to avoid any
misinterpretation.
Issue: SPR-9032
2016-05-03 19:33:32 +02:00
Sam Brannen
0f6711fe3b
Support @[Before|After]Transaction on default methods
...
Prior to this commit, @BeforeTransaction and @AfterTransaction could
only be declared on methods within test classes. However, JUnit 5 as
well as some existing third-party Runner implementations for JUnit 4
already support Java 8 based interface default methods in various
scenarios -- for example, @Test, @BeforeEach, etc.
This commit brings the Spring TestContext Framework up to date by
supporting the declaration of @BeforeTransaction and @AfterTransaction
on interface default methods.
Issue: SPR-14183
2016-05-03 18:57:31 +02:00
Sam Brannen
7ce5ba4a3f
Refer explicitly to JUnit 4 in the testing chapter
...
This commit updates the Testing chapter in the reference manual to
refer explicitly to JUnit 4 instead of just "JUnit" (where appropriate)
in order to avoid confusion with forthcoming support for JUnit 5.
2016-05-03 18:57:31 +02:00
Johnny Lim
44e652f99e
Remove duplicate words
...
Closes gh-1039
2016-04-19 08:24:21 +02:00
Stephane Nicoll
64d4e91b6e
Polish
2016-04-15 16:38:18 +02:00
Stephane Nicoll
bee1b77af5
Manage asynchronous EventListener with replies
...
This commit makes sure to reject an `@EventListener` annotated method
that also uses `@Async`. In such scenario, the method is invoked in a
separate thread and the infrastructure has no handle on the actual reply,
if any.
The documentation has been improved to refer to that scenario.
Issue: SPR-14113
2016-04-15 13:22:11 +02:00
Juergen Hoeller
44a9c495ab
Strong Hibernate 5.1 recommendation
...
Issue: SPR-13480
Issue: SPR-14176
2016-04-15 12:07:31 +02:00
Michael Simons
82778e1746
Fix copy & paste error for cache schema
...
This replaces the prefix "jdbc" with "cache" and fixes the schema URL.
Closes gh-1028
2016-04-12 08:12:50 +02:00
Brian Clozel
f3b09464f3
Polish reference documentation
...
`@InitBinder` annotated methods are not meant to be part of the public
contract of Controller and should be package protected.
2016-04-08 16:47:11 +02:00
Sam Brannen
ebeba43830
Document context cache size control in the TCF in reference manual
...
Issue: SPR-8055
2016-04-06 15:06:10 +02:00
Sam Brannen
5bd5c74e7c
Polish TCF key abstractions section in reference manual
2016-04-06 14:56:08 +02:00
Sam Brannen
b6f99e38ae
Polish wording regarding previous release versions in reference manual
2016-04-06 14:45:28 +02:00
Sam Brannen
0c0c904837
Consistently refer to Groovy alongside XML in reference manual
2016-04-06 14:36:36 +02:00
Sam Brannen
f752e050bc
Fix grammar in the reference manual
2016-04-06 14:20:05 +02:00
Sam Brannen
6d7f497ab3
Fix single quote formatting issues in the reference manual
2016-04-06 14:14:51 +02:00
Sam Brannen
5a0a88c039
Fix typo in reference manual regarding JSR 330
2016-04-06 13:56:57 +02:00
Sam Brannen
a9aa85c6c0
Document DirtiesContextBeforeModesTEL in the reference manual
2016-04-06 13:55:19 +02:00