When using the Spring IDE support in Eclipse 3.0 it flags the following:
<bean id="loggingAspect"
class="spring.aspectj.LoggingAspect" factory-method="aspectOf"/>
with the error
'Attribute "factory-method" must be declared for element type "bean"'
I'm using the spring-framework-1.1.1 version
I used the bean definition syntax similar to page 68 in the Spring reference manual, which is for version 1.1.2. So my question is how would I do this in version 1.1.1?


Reply With Quote