如何调试 ProxyFactoryBean 拦截器未触发

发布于 2024-12-07 14:34:13 字数 689 浏览 0 评论 0原文

我正在尝试使用 MethodInterceptor 和 ProxyFactorBean 来生成特定方法的审核信息。

我可以看到 beanInterceptedOpMethod 已初始化,但在调用originalOp 时它永远不会被调用。我在日志中没有看到任何错误。

Spring 中是否有一些调试功能可以追踪它没有被调用的原因?

 <bean id="interceptedOpMethod" class="com.chunk.audit.CollectData" />

 <bean id="originalOp" class="com.chunk.calculate.Stats" />

 <bean id="interceptedOp" class="org.springframework.aop.framework.ProxyFactoryBean">
    <property name="target" ref="originalOp" />

    <property name="interceptorNames">
        <list>
            <value>interceptedOpMethod</value>
        </list>
    </property>
</bean>

I'm trying to use the MethodInterceptor and ProxyFactorBean to be able to produce audit information on a particular method.

I can see that the bean interceptedOpMethod is initialized, but it never gets called when originalOp is called. I don't see any errors in the log.

Is there some debugging capability within Spring to be able to track down why it isn't getting called?

 <bean id="interceptedOpMethod" class="com.chunk.audit.CollectData" />

 <bean id="originalOp" class="com.chunk.calculate.Stats" />

 <bean id="interceptedOp" class="org.springframework.aop.framework.ProxyFactoryBean">
    <property name="target" ref="originalOp" />

    <property name="interceptorNames">
        <list>
            <value>interceptedOpMethod</value>
        </list>
    </property>
</bean>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

冬天旳寂寞 2024-12-14 14:34:13

您如何实例化 com.chunk.calculate.Stats?如果你通过“new”创建它,那么Spring永远没有机会将切点注入到它的实例方法中。

How are you instantiating com.chunk.calculate.Stats? If you create it via "new", then Spring never has the chance to inject the cut points into its instance methods.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文