You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
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
build-spring-framework
[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
org.springframework.aop
[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
org.springframework.asm
Merge 3.1.0 development branch into trunk
15 years ago
org.springframework.aspects
[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
org.springframework.beans
Introduce "Aware" superinterface
14 years ago
org.springframework.context
Introduce "Aware" superinterface
14 years ago
org.springframework.context.support
Introduce "Aware" superinterface
14 years ago
org.springframework.core
M1 cut of environment, profiles and property work (SPR-7508)
14 years ago
org.springframework.expression
M1 cut of environment, profiles and property work (SPR-7508)
14 years ago
org.springframework.instrument
Merge 3.1.0 development branch into trunk
15 years ago
org.springframework.instrument.tomcat
Merge 3.1.0 development branch into trunk
15 years ago
org.springframework.integration-tests
M1 cut of environment, profiles and property work (SPR-7508)
14 years ago
org.springframework.jdbc
M1 cut of environment, profiles and property work (SPR-7508)
14 years ago
org.springframework.jms
[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
org.springframework.orm
[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
org.springframework.oxm
[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
org.springframework.spring-library
Merge 3.1.0 development branch into trunk
15 years ago
org.springframework.spring-parent
Add hamcrest to beans pom in the right place to make tests compile
14 years ago
org.springframework.test
M1 cut of environment, profiles and property work (SPR-7508)
14 years ago
org.springframework.transaction
Introduce "Aware" superinterface
14 years ago
org.springframework.web
Introduce "Aware" superinterface
14 years ago
org.springframework.web.portlet
Introduce "Aware" superinterface
14 years ago
org.springframework.web.servlet
M1 cut of environment, profiles and property work (SPR-7508)
14 years ago
org.springframework.web.struts
[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
spring-framework-reference
[SPR-7849] work in progress: revising the testing chapter based on internal review.
14 years ago
src/test/java/org/springframework/core/ env
Merge 3.1.0 development branch into trunk
15 years ago
.gitignore
M1 cut of environment, profiles and property work (SPR-7508)
14 years ago
build.properties
Merge 3.1.0 development branch into trunk
15 years ago
build.versions
[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
ci-build.properties
adding properties file to simplify ant use in Bamboo CI build
16 years ago
eclipse-code-formatter.xml
h2 embedded db support; updated formatting conventions not to auto-format javadoc; added hsqldb and h2 to jdbc maven pom as optional deps
16 years ago
spring-framework.ipr
Merge 3.1.0 development branch into trunk
15 years ago
spring-framework.psf
Renamed org.springframework.instrument.classloading module to org.springframework.instrument.tomcat
16 years ago