Dave Syer
92a6e3188b
Correct Spring Data REST docs
2015-06-23 09:41:28 +01:00
Phillip Webb
7fd07b6588
Document jOOQ support
...
Closes gh-2804
2015-06-22 21:20:12 -07:00
Stephane Nicoll
347cbb1ca4
Merge branch '1.2.x'
2015-06-22 10:44:37 +02:00
Stephane Nicoll
5f2ffdb9e2
Update SnakeYAML link
...
Closes gh-3302
2015-06-22 10:44:23 +02:00
Phillip Webb
3e4bbf05cd
Document Apache Artemis support
...
See gh-3154
2015-06-18 21:00:34 -07:00
Andy Wilkinson
fd6d61e8b4
Add auto-configuration support for Spring Session
...
This commit adds support for automatically configuring Spring Session.
In a web application when both Spring Session and Spring Data Redis
are on the classpath, Spring Session's Redis Http Session support
will be auto-configured. The max inactive interval for Redis-backed
sessions can be configured via the environment using the existing
server.session-timeout property.
Closes gh-2318
2015-06-18 14:52:59 +01:00
Stephane Nicoll
b5d49b3099
Expose additional admin features
...
Improve SpringApplicationAdminMXBean to expose additional information:
* Whether the application uses an embedded container
* The properties exposed by the `Environment`
This allows to know if the application is web-based and the HTTP port
on which it is running.
Closes gh-3067
2015-06-17 11:52:18 +02:00
Andy Wilkinson
eab599bd38
Merge branch '1.2.x'
2015-06-15 14:25:41 +01:00
Andy Wilkinson
0253f21f2f
Update the link to Bitronix's documentation
...
Closes gh-3207
2015-06-15 14:25:24 +01:00
Stephane Nicoll
bb4c89592d
Merge branch '1.2.x'
2015-06-14 09:36:25 +02:00
Stephane Nicoll
01ba732a73
Consistent use of "=" for property key
...
Closes gh-3218
2015-06-14 09:36:10 +02:00
Phillip Webb
ad7ed1dbae
Formatting
2015-06-10 11:26:39 -07:00
Stephane Nicoll
c1dea3797a
Add documentation for SpringApplicationAdminMXBean
...
Closes gh-3179
2015-06-10 13:46:37 +02:00
Stephane Nicoll
8c8fce5b0f
Merge branch '1.2.x'
...
Conflicts:
spring-boot-docs/src/main/asciidoc/appendix-application-properties.adoc
2015-06-08 15:18:45 +02:00
Stephane Nicoll
e16f5d03ab
Add reference to Mustache to documentation
...
Closes gh-3121
2015-06-08 15:16:01 +02:00
John Tims
07a688968d
Fix typo
...
Closes gh-3140
2015-06-06 13:36:15 +02:00
Phillip Webb
98b6fafe92
Fix broken docbook
2015-06-05 16:31:41 -07:00
Phillip Webb
c7677d10ca
Polish documentation
2015-06-05 15:58:14 -07:00
ceilfors
5fb67af25f
Remove spock caveat that was fixed in 1.0
...
Closes gh-3072
2015-06-04 14:51:14 +02:00
Phillip Webb
312471f996
Polish documentation
2015-06-04 01:09:59 -07:00
Stephane Nicoll
fca192fa41
Add spring-boot-starter-cache
...
Closes gh-3098
2015-06-03 17:29:57 +02:00
Josh Thornhill
10f7031e46
Fix typo in documentation
...
Closes gh-3077
2015-06-02 11:50:49 +02:00
Stephane Nicoll
fbfdbce266
Add cache documentation
...
See gh-2633
2015-06-02 11:25:24 +02:00
Josh Thornhill
f721862d6f
Fix typo in documentation
...
Closes gh-3077
2015-06-02 09:34:54 +02:00
Stephane Nicoll
fc067d1b75
Merge branch '1.2.x'
2015-05-28 15:30:27 +02:00
Phil Parker
eb92dfbb3b
Fix link to Groovy documentation
...
Closes gh-3054
2015-05-28 15:28:48 +02:00
Stephane Nicoll
f0b203f6da
Update doc for schema creation
...
See gh-446
2015-05-28 09:45:06 +02:00
Stephane Nicoll
97cf86801b
Fix example structure
2015-05-27 11:10:14 +02:00
Dave Syer
c5dc3f564b
Add @EnableOAuth2Sso and spring.oauth2.sso.*
...
User can enable OAuth2 SSO by declaring the intent (@EnableOAuth2Sso)
and also configuring the client properties (spring.oauth2.client.*).
The spring.oauth2.sso.* are only needed to change the path for the
login (defaults to /login) - any other security configuration for the
protected resources can be added in a WebSecurityConfigurerAdapter
which carries the @EnableOAuth2Sso annotation.
2015-05-26 07:23:26 +01:00
Dave Syer
af320b49bf
Rationalize some features and merge in customizers from Spring Cloud
2015-05-26 06:34:43 +01:00
Phillip Webb
e1152b4db8
Merge branch '1.2.x'
2015-04-13 11:41:03 -07:00
Phillip Webb
dd19dd70c5
Update relaxed binding documentation sample
...
Include getters and setters with the sample class.
Fixes gh-2813
2015-04-13 11:38:42 -07:00
Phillip Webb
5d9efe40d0
Merge branch '1.2.x'
2015-03-30 17:01:08 -07:00
Phillip Webb
495a79c324
Document logging properties with @PropertySource
...
Add a note to the logging documentation to point out a potential gotcha.
Fixes gh-2709
2015-03-30 16:59:33 -07:00
Andy Wilkinson
dd35718608
Merge branch '1.2.x'
2015-03-17 11:28:03 +00:00
Andy Wilkinson
b82e220008
Polish spring-boot-features
...
Wrap at 90 chars more consistently
2015-03-17 11:26:44 +00:00
izeye
a4be4670c3
Polish the documentation
...
Closes gh-2570
2015-03-17 11:00:31 +00:00
Stephane Nicoll
7b2b11903a
Add ApplicationReadyEvent
...
Add an event that indicates the Spring Application has fully started and
is now ready to service requests. While ContextRefreshEvent provides
such hook for a regular spring application, this dedicated event is
triggered once all callbacks have been processed and right before the
context is returned to the caller. Besides, such event is triggered once
per application, regardless of the number of (child) contexts that could
have been created.
Closes gh-2638
2015-03-12 09:23:29 +01:00
Phillip Webb
ee1cab7f5b
Improve LevelRemappingAppender documentation
...
Fixes gh-2443
2015-02-25 14:07:14 -08:00
izeye
1493da1e03
Improve documentation
...
Closes gh-2553
2015-02-25 11:32:58 -08:00
Phillip Webb
56e31a8c6b
Polish
2015-02-23 19:21:37 -08:00
Dave Syer
c3c156515f
Add extra detail on servlet listeners
...
Fixes gh-2518
2015-02-18 10:40:47 +00:00
Andy Wilkinson
b8babd4eb4
Polish documentation on @ConfigurationProperties getters and setters
...
- Correct typo (coercable -> coercible)
- Update description to reflect that Spring 4.1.5 supports the
expansion of array properties and and a test that verifies the
behaviour
2015-02-17 11:25:50 +00:00
Dave Syer
5efdb85876
Enhance note about Java Bean getters and setters
2015-02-13 13:11:12 +00:00
Dave Syer
e541e139a2
Add note about Java Bean getters and setters
...
Apparently some users are unclear that setters and getters are
mandatory for @ConfigurationProperties. This should clear it up.
2015-02-13 09:17:28 +00:00
Phillip Webb
636898f9ad
Polish
2015-02-09 11:39:48 -08:00
Andy Wilkinson
17f05467bc
Document IDEA’s quirky classpath ordering and its effect on templates
...
Closes gh-2319
2015-02-04 11:35:21 +00:00
Andy Wilkinson
e489ab9b29
Update docs to clarify ordering for profile-specific properties
...
Closes gh-2404
2015-02-03 14:12:04 +00:00
Andy Wilkinson
93d533dfa6
Document auto-configuration support for Spring HATEOAS
...
Closes gh-2426
2015-02-02 16:53:52 +00:00
Phillip Webb
88f824845d
Clarify documentation of relaxed binding
...
Update the "Relaxed binding" with a small table of common relaxed
property names and when they might be used.
Fixes gh-2234
2015-01-07 22:26:01 -08:00