Commit Graph

9507 Commits (1.4.x)
 

Author SHA1 Message Date
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]
11 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
Phillip Webb 521608fda3 Extract CLI parsing from config file initializer
Extract command line property parsing logic from the
ConfigFileApplicationContextInitializer and instead perform it as part
of the SpringApplication initialization. This allows SpringApplications
that do not use the ConfigFileApplicationContextInitializer to still
expose command line arguments as property sources.

SpringApplicationInitializers may now implement EnvironmentAware if
they need access to the environment during early initialization.

This commit also removes the custom command line parsing logic that
was temporarily added to work around SPR-10579 which has since been
fixed upstream.
12 years ago
Dave Syer cc926dac0c Add dist mgt to starter parent 12 years ago
Dave Syer f0d5b8bbe3 [bs-153] Don't expose classes as resource
Made classpath:/[static,resourecs,public] available instead. Some
sample apps had to change so probably some gs-* guides etc as well?

[Fixes #51368907]
12 years ago
Dave Syer 6c3fd2b2d0 [bs-232] Use "jar" packaging instead of custom "executable-jar"
[Fixes #53376257]
12 years ago
Dave Syer 4ce6b64dce [bs-175] Generic dispatcher features for SpringApplication
* Move Spring.main into SpringApplication.main
* User can bind command line or application.properties into
SpringApplication
* User can provide sources dynamically with --spring.main.sources
(a CSV list of class names, package names or XML resource locations)
* One side effect was to make DocumentMatchers stateless

[#52830829]
12 years ago
Dave Syer d75c1e4956 Speed up CLI tests if jar is cached locally 12 years ago
Dave Syer eba5b74910 Remember to add interceptor to registry 12 years ago
Dave Syer f52d624be5 Add option in @OnBeanCondition to *only* look in parent
[Fixes #53374039] [bs-231] Broken tests for management port configuration
12 years ago
Dave Syer 789e75d2e5 [bs-170] Out of the box support for thymeleaf security dialect
[Fixes #52121649]
12 years ago
Phillip Webb 14aa163731 Start to breakup README.md documentation 12 years ago
Phillip Webb 30bf5dcb0d Do not using static finals for PID and format
Update SimpleFormatter so that the PID and format can be different per
formatter instance.
12 years ago
Dave Syer 217a6a4cd1 Unify log format of default JDK logger with other systems 12 years ago
Phillip Webb a97f4f670c Tweak starter poms
Minor tweaks to some starter POMs.
12 years ago
Phillip Webb 8d39abb8d9 Protect against multiple define package calls
Ensure that multiple calls to define package are not made when the
same class is contained in multiple jars.
12 years ago
Phillip Webb dc1b787a01 Support color log output
Rework logback formatting to include ansi color output. Also added
support for JUL over SLF4J to ensure that tomcat logging looks OK.

Issue: #53249833
12 years ago
Phillip Webb 5c46a39494 Polish ANSI code 12 years ago
Phillip Webb a324beadac Create LoggingSystem class to configure logging
Add LoggingSystem class that can be used to configure various logging
systems in a consistent way. Mostly the code is migrated from the
LoggingApplicationContextInitializer.
12 years ago
Phillip Webb ae20d389c4 Add SpringApplicationInitializer strategy
Add SpringApplicationInitializer that can be used to initialize a
SpringApplication before it runs. An ApplicationContextInitializer
can optionally implement this interface.
12 years ago
Phillip Webb d46dbca115 Use starter for CLI apps
Update SpringCompilerAutoConfiguration to used the spring starter
rather than explicit bootstrap dependencies.
12 years ago
Phillip Webb 0b673d82e2 Add simple ANSI encoder and colorize the banner
Issue: #51754753
12 years ago
Phillip Webb 95373af374 Use logback as default logging implementation
Issue: #53278727
12 years ago
Phillip Webb 0ec0851a4f Update CLI SLF4J version 12 years ago
Dave Syer 8801abe24a Merge pull request #7 from scottfrederick/master
Fixed URL for installer and code formatting.
12 years ago
Scott Frederick 8711f8f57e Fixed URL for installer and code formatting. 12 years ago
Phillip Webb 2a4454b524 Add simple Java Util Logging formatter
Add simple formatter used with the default logging.properties to
improve JUL output.
12 years ago
Phillip Webb 0121e15a32 Associate manifest information with packages
Add a custom classloader to ensure that packages from classes loaded
from nested JARs include manifest information.
12 years ago
Phillip Webb 8f62222419 Generate default manifest for all projects 12 years ago
Phillip Webb d4b9014b64 Log useful information on startup
Include the bootstrap version number in the banner and log information
such as the host name when starting.

Issue: #53030523
12 years ago
Phillip Webb 7d824a5701 Fix accidentally broken test 12 years ago
Phillip Webb 7d0c0fc0dd Polish 12 years ago
Dave Syer 6dbd6d7c4c [bs-178] Use OpenEntityManagerInView by default in webapp with JPA
If JPA is used and the context is a webapp we add the OEMIV interceptor.
It can be switched off by the user declaring a bean of type OEMSIVI or
the corresponding Filter, or by setting spring.jpa.open_in_view=false.

[Fixes #52939983]
12 years ago
Dave Syer 5b2986d7a9 Use parent pom with scope=import to define dependency management.
If you add a pom-type dependency with scope=import to the dependency
management section, it pulls in the dependencyManagement section from
the other side. So we can have all the depndency versions fixed in one
place (the root parent).

[#53185049] [bs-225] Rework starter parent pom
12 years ago
Dave Syer a7c3edefe8 Tied up loose end for spring profile binding in YAML
The short story: we only support comma-separated spring.profiles
in YAML documents.

[#51968679]
12 years ago
Dave Syer d5aad97d1f [bs-168] Support convenient binding of @Bean to external source
@ConfigurationProperties now has a path() attribute that can be used
to specify a resource location explicitly.

[Fixes #51968657]
12 years ago