1304 Commits

Author SHA1 Message Date
Dave Syer
0d583deb27 Add CLASSPATH elements back to spring CLI script
Also add @WebConfiguration as a shortcut for groovy
scripts to get MVC behaviour (without a @Controller)

[#54926366]
2013-08-12 18:18:11 +01:00
Phillip Webb
8e347cddff Merge pull request #23 from chanwit/master
# By Chanwit Kaewkasi
* pull23:
  Fix a line ending issue for building on Windows
2013-08-12 09:26:02 -07:00
Chanwit Kaewkasi
1b38cddeae Fix a line ending issue for building on Windows 2013-08-12 09:24:36 -07:00
Phillip Webb
e7689fd7c9 Revert "Add repository declarations to parent poms"
This reverts commit e8430f611971332068ffac55e11b3c337f5c2d37.
2013-08-12 09:10:39 -07:00
Dave Syer
68e84f7d02 Add pool parameters to AbstractDataSourceConfiguration
* Exposed common pool properties in the base class for data source configuration
* Made it @ConfigurationProperties so it binds in strongly typed sense

[Fixes #53028455] [bs-214] Add pool parameters to AbstractDataSourceConfiguration
2013-08-12 11:16:34 +01:00
Dave Syer
56f5b3ad0f Add logging to dispatcher servlet condition 2013-08-12 10:39:04 +01:00
Dave Syer
0af9d2022a Allow user to supply servlets and filters and still get default DispatcherServlet
Instead of not installing one at all if there is any ServletContextInitializer,
Spring Boot will now install a DispatcherServlet if context does not contain one
already with the magic name "dispatcherServlet".

[Fixes #54674870] [bs-277]
2013-08-12 10:32:49 +01:00
Dave Syer
86064f48e0 Add GVM instructions to README 2013-08-11 12:45:52 +01:00
Dave Syer
e8430f6119 Add repository declarations to parent poms 2013-08-11 12:27:58 +01:00
Phillip Webb
81541643fd Fix accidentally committed errors in README.md 2013-08-10 11:40:26 -07:00
Phillip Webb
878ff13620 Documentation updates 2013-08-09 15:34:04 -07:00
Phillip Webb
ce5e145afa Add Libraries.NONE static final 2013-08-09 15:33:37 -07:00
Phillip Webb
0b7256e7f9 Fix compile failure on JDK 6 2013-08-09 13:01:39 -07:00
Phillip Webb
00fc04c01e Simplify OnBeanCondition
Merge OnMissingBeanCondition into OnBeanCondition and simplify code.
Polish on bean conditions
2013-08-09 12:36:20 -07:00
Phillip Webb
82320b3525 Simplify OnWebApplicationCondition
Merge OnNotWebApplicationCondition into OnWebApplicationCondition and
simplify code.
2013-08-09 12:35:43 -07:00
Phillip Webb
7525eb31f1 Simplify OnClassCondition
Merge OnMissingClassCondition into OnClassCondition and simplify code.
2013-08-09 12:34:14 -07:00
Phillip Webb
cf655945aa Polish 2013-08-09 12:28:54 -07:00
Dave Syer
7bea9dd973 Massage MVC test a bit
* Use *Tests as classname
* Fixed broken test in suite where ID is not always "1"
2013-08-09 16:41:58 +01:00
Biju Kunjummen
31af68a915 Added a Spring MVC test for the Sample MessageController 2013-08-09 16:31:11 +01:00
Dave Syer
0e798a32aa Fix issue with new format of VCAP_APPLICATION 2013-08-09 13:44:28 +01:00
Dave Syer
08e679753d Add CLA link to CONTRIBUTING.md 2013-08-08 16:34:20 +01:00
Dave Syer
2ba1bd9dbb Fix security dependency in README 2013-08-08 16:30:14 +01:00
Dave Syer
a2fe8a0e89 Actuator README accuracy 2013-08-08 16:06:30 +01:00
Dave Syer
f645b03939 Fix pom in actuator README 2013-08-08 15:58:05 +01:00
Phillip Webb
d8eadfddff Limit Servlet Listener registration
Limit Servlet Listener registration to the specific supported types.

Issue: #54112999
2013-08-08 05:08:55 -07:00
Phillip Webb
f25b9e109f Remove trailing whitespace from bash script 2013-08-08 05:07:44 -07:00
Dave Syer
42bb793155 Add ServletContextListener to embedded web app
* User can add @Bean of type EventListener (e.g.
ServletContextListener)

[Fixes #54112999] [bs-254]
2013-08-08 11:27:07 +01:00
Dave Syer
3b9df63f73 Add bash completion for spring command
* Added src/main/content/bash_completion.d/spring
* Also made all commands alias to "--<self>" so
"--help" is a synonym for "help" (for instance). This
helps with the completion generation.

[Fixes #54827292]
2013-08-08 11:00:41 +01:00
Phillip Webb
f5bae04714 Ignore websocket sample for now 2013-08-07 23:09:08 -07:00
Phillip Webb
b5e81ff42d Fix broken test dependencies 2013-08-07 22:52:26 -07:00
Phillip Webb
eb69732fbb Reinstate integration tests 2013-08-07 22:34:09 -07:00
Phillip Webb
8a33c39f0b Polish AutoConfigurationSorter 2013-08-07 16:29:41 -07:00
Dave Syer
0d19b2d9fa Revert change to placeholders in config file initializer 2013-08-07 16:53:15 +01:00
Rob Winch
f40758c13d Update README link text to be M1
Previously the link text for the download of 0.5.0.M1 was labeled as a
SNAPSHOT.

This commit updates the link text to be the correct version.
2013-08-07 14:32:53 +01:00
Dave Syer
521174754e Add default /error view for HTML clients
* Add integration tests for /error view
* Add "error" @Bean as default view for HTML

Users may see side effects because now there will be
a ContentNegotiatingViewResolver by default for the
first time in a vanilla Actuator app. Should be
interesting.

[Fixes #54597932] [bs-273] Circular view reference for /error
2013-08-07 10:55:30 +01:00
Dave Syer
62f08bb4ec Tweak travis again 2013-08-07 10:31:44 +01:00
Dave Syer
33658c2933 Add @AutoConfigureBefore and simple implementation
[#54597932] [bs-273] Circular view reference for /error
2013-08-07 10:19:56 +01:00
Phillip Webb
91a56f7bb7 Merge pull request #13 from jotomo/patch-1
# By Johannes Mockenhaupt
# Via Johannes Mockenhaupt
* patch-1:
  Fix broken links to samples.
2013-08-06 16:52:01 -07:00
Johannes Mockenhaupt
c3a7dbb192 Fix broken links to samples. 2013-08-07 01:26:35 +02:00
Phillip Webb
1b370b54b6 Update README.md brew instructions 2013-08-06 09:25:32 -07:00
Dave Syer
f502098065 Fix logging depdendencies in samples 2013-08-06 13:40:39 +01:00
Dave Syer
12f0d4d95e Rename ops package to actuate 2013-08-06 13:15:02 +01:00
Dave Syer
e967c2d551 Add exception with more helpful error message.
[#54676948] Filter registered twice
2013-08-06 13:13:59 +01:00
Dave Syer
a602ce3f10 Add travis-artifacts to build 2013-08-06 13:06:54 +01:00
Dave Syer
65bd9dac85 Fix double registration of Filter
A stupid typo lurking in EmbeddedWebApplicationContext meant
that a FilterRegistrationBean would register a Filter, and then
it would be registered again without the initializer.

[Fixes #54676948] Filter registered twice
2013-08-06 11:58:19 +01:00
Dave Syer
2ec953a2e8 Add rewrite filter as managed dependency 2013-08-06 11:58:07 +01:00
Dave Syer
d2419a36fd Add server.tomcat.access_valve_enabled flag
Also introduced new strategy for customizing Tomcat Context
(TomcatContextCustomizer) - any that are added to the factory
will be applied before any other customizations in postProcessContext()

[Fixes #54670052] [bs-275] Make Tomcat access valve logs more accessible
2013-08-06 10:21:17 +01:00
Dave Syer
dc812ddf17 Add notes on zip download 2013-08-06 10:21:17 +01:00
Phillip Webb
c0aec14af1 Fix URLs in README.md 2013-08-06 01:45:40 -07:00
Phillip Webb
f4c129a063 Don't use snapshot repos for CLI test
Update SampleIntegrationTests to only use local maven repo when
running integration tests.
2013-08-06 01:22:59 -07:00