3

启用 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
4

2 回答 2

1

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

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

于 2011-01-31T16:38:21.393 回答
0

<aop:aspectj-autoproxy/>不会无故执行代理。也许您声明了切入点包含 s 的某个切面String,因此它已被代理。

于 2011-01-31T12:46:55.900 回答