Keith Donald
8cbab5acb6
costin code review comments
16 years ago
Keith Donald
46c9a003eb
BindingPoint to ConversionPoint, javadoc
16 years ago
Keith Donald
cf2453e8eb
renamed TypeDescriptor to BindingPoint
16 years ago
Christian Dupuis
33de330b0e
minor change to use registerBeanComponent instead of directly registering the BeanDefinition
16 years ago
Christian Dupuis
48c97342fe
some minor tweaks to the scheduling namespace parser to make it more tooling friendly; applied new tools:annotation to method attribute in scheduling xsd
16 years ago
Christian Dupuis
fba5e5f0db
fixed tooling related problem where empty value of an attribute that should take a bean reference would call the RuntimeBeanReference constructor in the namespace parser and throw a IllegalArgumentException although the problem has already been reported using the ProblemReporter API
16 years ago
Juergen Hoeller
14732c5dc2
@Import detects and accepts existing configuration class in any order of processing
16 years ago
Juergen Hoeller
433d52b728
@Import detects and accepts existing configuration class of the desired type
16 years ago
Juergen Hoeller
da71f266ae
ConfigurationClassBeanDefinition implements AnnotatedBeanDefinition
16 years ago
Juergen Hoeller
cce6e2f4cd
added SourceExtractor support
16 years ago
Juergen Hoeller
bbd69da37f
updated all Spring Framework OSGI manifests to list unversioned imports explicitly; relaxed several OSGi bundle dependencies to optional and extended version ranges
16 years ago
Juergen Hoeller
20f12e6158
removed outdated Attributes references
16 years ago
Juergen Hoeller
12d6aa232a
added setMetadataReaderFactory method
16 years ago
Juergen Hoeller
e78c6fc317
explicitly declared SmartApplicationListener as ApplicationListener<ApplicationEvent>
16 years ago
Juergen Hoeller
0297116542
generified TypeConverter interface
16 years ago
Mark Fisher
ff36a31874
SPR-4359 Added support for a 'task-scheduler' element.
16 years ago
Mark Fisher
3e9b9a8a2a
SPR-4359 Initial commit of scheduling namespace support.
16 years ago
Juergen Hoeller
266a65982d
Servlet/Portlet ApplicationContexts use a specific id based on servlet/portlet name; DefaultListableBeanFactory references are serializable now when initialized with an id; scoped proxies are serializable now, for web scopes as well as for singleton beans; injected request/session references are serializable proxies for the current request now
16 years ago
Juergen Hoeller
4ccb352aac
ReloadableResourceBundleMessageSource correctly calculates filenames for locales with variant but without country now (SPR-5716)
16 years ago
Juergen Hoeller
0320445316
moved ScheduledTaskRegistrar to new config package (where the scheduling namespace will live as well)
16 years ago
Juergen Hoeller
1b5a433f22
added ScheduledTaskRegistrar etc
16 years ago
Juergen Hoeller
636d1db36d
avoid NPE for definitions without bean class specified
16 years ago
Juergen Hoeller
a6124793fc
polishing
16 years ago
Juergen Hoeller
6930859e82
removed StandardScopes pseudo-enum (superseded by meta-annotated scopes)
16 years ago
Thomas Risberg
15b33684a7
fixed JavaDoc
16 years ago
Juergen Hoeller
cea8f7f69e
custom stereotype annotations can be meta-annotated with @Service , @Controller etc as well; @Scope and @Transactional are now supported as meta-annotations on custom annotations
16 years ago
Juergen Hoeller
b5d21108da
@Configuration parsing fully relies on Spring's MetadataReader abstraction now
16 years ago
Juergen Hoeller
ea9d8925a2
next cut of JavaConfig metadata reading revision: using cached MetadataReaders
16 years ago
Chris Beams
4d509cebdb
Temporarily ignoring GroovyScriptFactoryTests#testResourceScriptFromTag in order to allow more important fixes to roll out.
16 years ago
Chris Beams
7ba4c563a6
Fixing build breakage with GroovyScriptFactoryTests.
...
The problem was that the Messenger object was not being proxed (assertTrue(AopUtils.isAopProxy(messenger)) was returning false). The cause for this seemed to be that the
pointcut was malformed / out of date, reading execution(* org.springframework.scripting.Messenger.*(..)), when the groovy Messenger class is actually declared in the org.springframework.scripting.groovy package.
I tried updating the fully-qualified package name in the pointcut expression, and this caused AspectJ matching errors saying that there was not such type that matches that FQ name.
So as a final resort, I removed the full-qualification entirely and went with execution(* *..Messenger.*(..)). All tests pass now, but it raises the question, why was AJ having matching errors? Is it because
the pointcut matching is being done before the groovy class is loaded? There could be a potential bug here.
16 years ago
Chris Beams
7d10d05b27
(temporarily) increasing visibility of the ConfigurationClassAnnotation interface in an attempt to resolve the issue encountered at http://is.gd/tCud
16 years ago
Juergen Hoeller
14bd475519
revised support for annotated factory methods (merged @FactoryMethod functionality into JavaConfig facility)
16 years ago
Arjen Poutsma
6495bdd8c8
Added AspectJ dependency
16 years ago
Thomas Risberg
1facd45c5e
switched to use XInclude
16 years ago
Juergen Hoeller
9baf9cdc2f
reintroduced "removeApplicationListener" method as well
16 years ago
Costin Leau
f6ecffdba7
+ osgi manifest updates
16 years ago
Juergen Hoeller
73dd6c28a3
reintroduced "removeAllListeners()" method since Spring DM uses it
16 years ago
Mark Pollack
362629d03b
Change version from 3.0.0.M3 to 3.0.0.BUILD-SNAPSHOT (again)
16 years ago
Juergen Hoeller
859497b171
@Resource names may use ${...} placeholders (SPR-5656)
16 years ago
Chris Beams
d08d73f274
Renamed ConfigurationPostProcessorTests -> ConfigurationClassPostProcessorTests
16 years ago
Chris Beams
254bf7e403
Fixed SPR-5655 - dm Server issues with ConfigurationClassPostProcessor attempting to read .class files with ASM with incorrect class loader
16 years ago
Chris Beams
e500348ca7
Fixed mystyped dependency on org.antlr 3.0.1 in context's Eclipse .classpath
16 years ago
Andy Clement
4c5854d017
objects flowing around in expression evaluation are now TypedValue's - these carry generics info, used for conversions.
16 years ago
Mark Pollack
8f76197485
Change version from 3.0.0.M3 to 3.0.0.BUILD-SNAPSHOT
16 years ago
Andy Clement
959cc95c3f
design change - no longer surfacing typeDescriptor through property accessor. conversion done internally in property write() code
16 years ago
Andy Clement
00018e511d
implement new interface method
16 years ago
Juergen Hoeller
b85d45725d
@Value values may use ${...} placeholders (driven by PropertyPlaceholderConfigurer); @Autowired uses field/parameter name as fallback qualifier value (SPR-5152)
16 years ago
Juergen Hoeller
aa8bd6313b
added "unregisterManagedResource" method to MBeanExporter/MBeanExportOperations (SPR-5517)
16 years ago
Chris Beams
1b13d8fadf
Added test using custom properties file with util:properties and dereferenced with @Value("#{...}")
16 years ago
Chris Beams
cebc85067a
polishing @Configuration tests
16 years ago