Commit Graph

39141 Commits (952ce1234ae099ccc82b70ba169ee41d0ab79e9f)
 

Author SHA1 Message Date
Dave Syer 1df48e23a2 Change @Conditional for reactor auto config 11 years ago
Dave Syer 683ddbf525 Add Reactor autoconfiguration
* Make Rector @Autowirable
* Create a ConsumerBeanPostProcessor so users can add
@On and @Reply to bean methods
* Added groovy auto compiler and script sample

[#53955419] [bs-250]
11 years ago
Dave Syer a365b8c1b6 Added ignored test cases for binding to maps
[#53947797] [bs-249] @ConfigurationProperties cannot bind to
Map<String,List<Thing>> or Map<String,Thing>
11 years ago
Dave Syer ca74168936 Exclude JSP classes by default 11 years ago
Dave Syer abf36c30f9 Add back no-op setLoader to ServerProperties
Tomcat starts up with server.loader System property set so
we need to accept that.

[Fixes #50806851] [bs-141]
First class escape hatch from jar to war for web applications
11 years ago
Dave Syer 0793e18857 Tests fixed, removing comments 11 years ago
Dave Syer 08137cf4d6 Pin problematic dependency in local repo cache 11 years ago
Dave Syer 672aa71ef5 Add Assume for CI build 11 years ago
Dave Syer d639763bd7 Another attempt at making the ui sample work 11 years ago
Dave Syer db27620c6e Fix interfaces in groovy configuration 11 years ago
Dave Syer 4ecfbf68bf Allow multi-valued spring.config.name
Now accepts CSV list and later values override in the
implied map that is generated.

[Fixes #53785419] [bs-245]
11 years ago
Dave Syer 59a409de2a Ignore failing test 11 years ago
Dave Syer cd1cba0c95 Add mainClass to starter-parent 11 years ago
Dave Syer 41fa6c25b8 Add some debug logging to samples 11 years ago
Dave Syer efe3bc1ecd Add war voodoo to the right file this time 11 years ago
Dave Syer b1c5b30de8 Add --classpath to CLI 11 years ago
Dave Syer 1c6cbad345 Add some useful imports to Mvc scripts 11 years ago
Dave Syer a817e7b969 Add failOnMissingWebXml to starter parent 11 years ago
Dave Syer 0effd7f58e Use security starter in CLI autocompile
[Fixes #53777677] [bs-244]
11 years ago
Dave Syer 01ebd6da08 Fix CLI script 11 years ago
Dave Syer 5d4f075011 Fix markdown rendering of bullets on homepage 11 years ago
Dave Syer 944fd4f4b8 Enhance some docs and add content to READMEs 11 years ago
Dave Syer 90c942387f Add basic READMEs 11 years ago
Phillip Webb 8fdfe245ca Add tests for session timeouts
Add unit tests for session timeouts and also added a convenience method
to set the time with a TimeUnit.

Issue: #53667353
11 years ago
Phillip Webb 100edf9a4b Remove getters from ConfEmbServletContainerFactory
Only provide setters on the ConfigurableEmbeddedServletContainerFactory
interface.
11 years ago
Phillip Webb adbbc35944 Reduce logging level for non-critical warning 11 years ago
Phillip Webb b824d6309a Hide hibernate validator version INFO logging 11 years ago
Phillip Webb a885afb818 Switch jetty & tomcat samples to use starter POMs 11 years ago
Phillip Webb 1eca022073 Add JSP-API to tomcat starter
Add JSP API jar dependency to tomcat starter. Primarily to prevent
log warnings.
11 years ago
Dave Syer ea3d2e74dd Add sessionTimeout to embedded servlet containers
* ConfigurableEmbeddedServletContainerFactory now has a sessionTimeout
property
* The ServerProperties in Actuator supports it

[Fixes #53667353] [bs-243] Support setSessionTimeout
11 years ago
Phillip Webb 1b780beddd Support mime type extension mappings
Add MimeMappings class to encapsulate mappings between file extensions
and mime types.

Issue: #51754753
11 years ago
Dave Syer 4469f36975 Format thread ID to be fixed width
...instead of...
[#53530203] [bs-237] Put [thread] at end of log line
11 years ago
Dave Syer c84462b3d8 Remove unfixable FIXME 11 years ago
Phillip Webb 9ce3428597 Add EmbeddedServletContainer.start() method
Add EmbeddedServletContainer.start() method that is used to start the
embedded servlet container once the application context has finished
being refreshed.

Refactored existing EmbeddedServletContainerFactory implementations to
no longer keep server instances locally.

Issue: #53538787
11 years ago
Phillip Webb 5c11d273cc Remove seemingly unused ManagementServerConfig.. 11 years ago
Phillip Webb facbbd4c93 Remove unnecessary TODO from SimpleJsonParser 11 years ago
Dave Syer fff2a804bc Add springcli.properties for version labels
[Fixes #53030591] [bs-191] Use filtering in maven build
11 years ago
Dave Syer c055cf063d Starter pom gets spring.zero.version as a property
We are using a resource filter to generate that pom, so it will change
when the version changes.  I prefer on balance leaving the generated
code in git in a place where it will be useful in a clean clone.

[Fixes #53189241] [bs-227]
11 years ago
Dave Syer 6fd6afc7a3 Upgrade Spring Security to 3.2.0
Existing users should update their dependencies to
spring-security-config instead of *-javaconfig.

[Fixes #53472823] [bs-234]
11 years ago
Dave Syer 4fe6b41ffe Merge manifest in maven-plugin
[Fixes #53530489] [bs-236]
11 years ago
Dave Syer ffa70f7c7e [bs-239] Race condition in embedded container contexts
I'll mark this as fixing the bug in tracker, but it might benefit
from some re-working at some point. The basic idea is to use
our old friend ContextRefreshedEvent to start the server listening
for connections. Delaying and making public the start() method from the
EmbeddedServletContainer doesn't help because you need the server to
start in order to get a ServletContext for Spring.

[Fixes #53538787]
12 years ago
Dave Syer 519d81cfdb Add some generally useful stuff to starter parent 12 years ago
Dave Syer e8dfb7368f Change trad sample to use tomcat starter 12 years ago
Phillip Webb 50109d4ace Set PID early for logging
Set PID early in the initialization process to ensure log enties are
not written without an ID.
12 years ago
Phillip Webb 1bec676ca1 Add 'run' goal to spring-package-maven-plugin
Add a 'run' goal that allows maven to run a bootstrap packaged
application in-place. Similar to the maven-exec-plugin but also
adds src/main/resources to the classpath, allowing 'instant refresh'
for web developers.

Issue: #53592789
12 years ago
Dave Syer 7dd186aa40 Use enum for parent context modes in @ConditionalOnBean
@ConditionOn*Bean now have search=ALL by default (CURRENT and
PARENTS also supported).

[Fixes #53538357]
12 years ago
Dave Syer b02be6e6ec Thymeleaf dialects now handled as @Autowired collection
This fixed the immediate problem with Thymeleaf, but leaves open
the question of how we can prevent other race conditions developing.
As long as the container can start handling requests before the Spring
context is refreshed this will be a source of bugs.

[Fixes #53482411] [bs-235] Race condition in Thymeleaf
12 years ago
Dave Syer 4de64c7f6b [bs-229] Switch to logback in starter POM
The spring-starter-logging is included everywhere transitively
now so logback is the default. The actuator sample explicitly
excludes the logging starter so it can have profiles for
different loggers (just as a demo).

[Fixes #53278727]
12 years ago
Dave Syer e2ae839594 [Fixes #53388895] [bs-233] Remove structure 101 files 12 years ago
Phillip Webb fd62eab23a Polish maven plugin 12 years ago