Costin Leau
4da39b48f7
moved cache abstraction from context.support to context
14 years ago
Costin Leau
182b6a437c
+ fixed cache xsd minor typo
14 years ago
Juergen Hoeller
67d9b8b943
EhCacheManagerFactoryBean properly closes "ehcache.xml" input stream, if any (SPR-7813)
14 years ago
Chris Beams
5e6912302a
Introduce "Aware" superinterface
...
All existing *Aware interfaces have been refactored to extend this
new marker interface, serving two purposes:
* Easy access to a type hierarchy that can answer the question
"What *Aware interfaces are available?", without requiring
text-based searches. Also clearly excludes false positives like
TargetClassAware and ParamAware, which while similarly named,
are not semantically similar to traditional *Aware interfaces
in Spring.
* Minor potential performance improvements in
AbstractAutowireCapableBeanFactory and
ApplicationContextAwareProcessor. Both have blocks of sequential
instanceof checks in order to invoke any *Aware interface callback
methods. For a bean that implements none of these interfaces,
the whole sequence can be avoided by guarding first with
if (bean instanceof Aware) {
...
}
Implementors of custom *Aware-style interfaces (and presumably
the BeanPostProcessors that handle them), are encouraged to refactor to
extending this interface for consistency with the framework as well as
the points above.
14 years ago
Sam Brannen
b130a36af7
[SPR-7850][SPR-7851] Upgraded to JUnit 4.8.1 and TestNG 5.12.1; added changelog entries for 3.1.0.M1.
14 years ago
Costin Leau
893fc83f49
SPR-7308
...
+ fix initialization problem for root object (inside SpEL eval context)
+ add integration tests for root object expressions
14 years ago
Costin Leau
e90f0a35e3
SPR-7308
...
+ add check for null key
14 years ago
Costin Leau
8285e9c2a7
SPR-7308
...
SPR-7736
+ clarify storage of null values
14 years ago
Costin Leau
18e141cbaa
SPR-7308
...
+ optimize updating of multiple caches
14 years ago
Costin Leau
bbba832904
SPR-7308
...
+ add missing package javadocs
14 years ago
Costin Leau
faf01b0337
SPR-7308
...
+ add support for multiple cache names
+ require each annotation to specify a cache name
+ add method support in Key generator interface
+ add bug fix for embedded JDK concurrent declaration
14 years ago
Costin Leau
21d64a74ae
SPR-7308
...
+ remove unnecessary methods for EhCacheCache
14 years ago
Costin Leau
4f8105ccaa
SPR-7308
...
+ add updated IDE classpath
+ add updated OSGi manifest
14 years ago
Costin Leau
85c02981b5
SPR-7308
...
+ initial commit of caching abstraction
+ main API
+ Spring AOP and AspectJ support
+ annotation driven, declarative support
+ initial namespace draft
14 years ago
Chris Beams
f480333d31
Merge 3.1.0 development branch into trunk
...
Branch in question is 'env' branch from git://git.springsource.org/sandbox/cbeams.git; merged into
git-svn repository with:
git merge -s recursive -Xtheirs --no-commit env
No merge conflicts, but did need to
git rm spring-build
prior to committing.
With this change, Spring 3.1.0 development is now happening on SVN
trunk. Further commits to the 3.0.x line will happen in an as-yet
uncreated SVN branch. 3.1.0 snapshots will be available
per the usual nightly CI build from trunk.
14 years ago
Juergen Hoeller
e56cfb8173
consistent use of JDK 1.5's ThreadLocal.remove() over ThreadLocal.set(null), preventing leaks (SPR-7441)
14 years ago
Ben Hale
7730e76c06
Publishing license and notice files
14 years ago
Arjen Poutsma
dbfa049e1e
Prepping for 3.0.5
14 years ago
Juergen Hoeller
ee04046ed7
polishing
14 years ago
Juergen Hoeller
9bd0bd9c3a
SpringTemplateLoader supports last-modified timestamp through Resource abstraction (SPR-7454)
14 years ago
Juergen Hoeller
18af8a00f9
added license header
15 years ago
Juergen Hoeller
91560774a0
accept any EHCache 2.x version as well (SPR-7302)
15 years ago
Arjen Poutsma
b31c34ed7d
Upgrading version to 3.0.4
15 years ago
Juergen Hoeller
433b4eff8f
MailSendException includes all messages as failed messages in case of a connect failure (SPR-7245)
15 years ago
Juergen Hoeller
026523d24b
set shared variables with configured ObjectWrapper (SPR-7165)
15 years ago
David Syer
eb7f8309e2
Update version in POMs to 3.0.3
15 years ago
Juergen Hoeller
ee686188b7
OSGi version range accepts JasperReports 3.x as well; fixed missing Spring version placeholder in context-support bundle
15 years ago
David Syer
1a351db6e0
Update Central POMs to 3.0.2
15 years ago
Costin Leau
8d0bb00188
+ make use or property placeholders inside template.mf
15 years ago
Costin Leau
0fd4a45070
+ upgrade to AspectJ 1.6.8
...
+ externalize some of the jar versions
+ align the versions of some dependencies between pom.xml and ivy.xml
15 years ago
David Syer
b077d5ba97
SPR-6678: fix poms for 3.0.1
15 years ago
Juergen Hoeller
fd3a39dc98
MimeMessageHelper encodes from, to, cc, bcc String addresses with given encoding as well (SPR-6530)
15 years ago
David Syer
1202f67cc8
SPR-5327: tweak the ivy.xml so that commons-logging is a separate configuration. It already comes out as optional in the generated poms (including core), which isn't great, but I can't see what is causing that
15 years ago
Mark Fisher
021663b12f
SPR-5507 The 'shutdownOrder' property of SmartLifecycle has been renamed 'phase'. The order no longer applies to shutdown only; now startup order is determined by the phase value as well. Components start in ascending order and stop in descending order.
15 years ago
Mark Fisher
196000d765
removed printlns from test
15 years ago
Mark Fisher
c6f3613411
SPR-6354 DefaultLifecycleProcessor no longer waits for the shutdown of SmartLifecycle beans that are not actually running.
15 years ago
Juergen Hoeller
08f9f8b8fb
startup thread marked as daemon now (SPR-6382)
15 years ago
Juergen Hoeller
4fb68bef04
polishing
15 years ago
Juergen Hoeller
747300f34c
added support for most recent EHCache 1.6 configuration properties to EHCacheFactoryBean (SPR-6234)
15 years ago
Mark Fisher
535ec5cffd
SPR-5507 Added support for shutdown order on SmartLifecycle. DefaultLifecycleProcessor now manages the shutdown in phases depending on that order (with a timeout value per group).
15 years ago
Mark Fisher
81efd48352
SPR-5507 SchedulerFactoryBean now implements SmartLifecycle instead of ApplicationListener.
15 years ago
Mark Fisher
91297d9863
SPR-6307 Quartz SchedulerFactoryBean now "auto-starts" upon receiving a ContextRefreshedEvent rather than within afterPropertiesSet().
15 years ago
David Syer
6aa97d5a3a
RESOLVED - issue SPR-6038: HSQLDB+Quarz using data source causes "Unexpected token: FOR in statement " exception
...
Missing ivy dependency
15 years ago
David Syer
2c0cf49b94
RESOLVED - issue SPR-6038: HSQLDB+Quarz using data source causes "Unexpected token: FOR in statement " exception
...
Detect HSQL in LocalDataSourceJobStore and force locks to be taken locally (with a SimpleSemaphore)
15 years ago
David Syer
89424579ae
OPEN - issue SPR-6038: HSQLDB+Quarz using data source causes "Unexpected token: FOR in statement " exception
...
Convert test case to JUnit 4
15 years ago
Juergen Hoeller
09e6a85edd
fixed overview files
15 years ago
Mark Pollack
c6cd1a528e
SPR-6119 - Add slf4j dependency back to orm's pom.xml but in test scope as it is needed to run tests that use Hibernate
...
SPR-5956 - Remove commons-logging dependency definitions in pom.xml for all but spring-core so as to make exclusion rule easier for user who use slf4j
15 years ago
Juergen Hoeller
34d2a69a82
removed separate placeholder test class
15 years ago
Mark Pollack
bd098ce1db
pom maintenance - sync with ivy.xml
...
update junit version in ivy.xml for org.sf.aspects
15 years ago
Mark Fisher
dedecf7ae9
SPR-6142 Moved ErrorHandler strategy interface to the org.springframework.util package so that it can be used by MessageListener containers in addition to TaskSchedulers.
15 years ago