启用AOP会破坏对带有字符串的工厂bean的依赖注入

时间:2011-01-31 11:53:03

标签: spring spring-aop

启用AOP会破坏对带有字符串的工厂bean的依赖注入。

以下是上下文文件中的片段:

<aop:aspectj-autoproxy/>

<bean id="foo"
      class="FooFactory"
      p:url-ref="url"/>

<bean id="url" class="java.lang.String">
    <constructor-arg value="#{ 'localhost:50131'}"/>
</bean>

这是工厂bean。

public class FooFactory extends AbstractFactoryBean<Foo> {
    private String url;

    public void setUrl(final String url) {
        this.url = url;
    }

    @Override
    public Class<?> getObjectType() {
        return Foo.class;
    }

    @Override
    protected Foo createInstance() throws Exception {
        Validate.notNull(url, "null URL");
        return new FooFactory().createFoo(new String[]{url});
    }
}

这是唯一声明的方面:

@Component
@Aspect
public class ProfilerAspect {
    @Around("@target(org.springframework.stereotype.Controller) && args(model,..)")
    public Object profileController(final ProceedingJoinPoint proceedingJoinPoint, final Model model) throws Throwable {
        return proceedingJoinPoint.proceed();
    }
}

这是例外

java.lang.IllegalStateException: Cannot convert value of type [$Proxy13 implementing java.io.Serializable,java.lang.Comparable,java.lang.CharSequence,org.springframework.aop.SpringProxy,org.springframework.aop.framework.Advised] to required type [java.lang.String] for property 'url': no matching editors or conversion strategy found

2 个答案:

答案 0 :(得分:1)

看起来,它与切入点表达式中的@target指示符有关。我可以使用类似于你的简单设置重现行为(在切入点中只有一个自定义注释)。它适用于简单的execution()指示符。

不幸的是,我不知道为什么这会导致Spring代理String对象。

答案 1 :(得分:0)

<aop:aspectj-autoproxy/>没有理由不执行代理。也许您声明了一些方面,其切入点包括String s,因此它已被代理。