如何使用Spring编写注解触发的方法拦截器?
我使用 Spring 2.5 进行依赖注入管理。我有一些类需要在调用某些方法时在后台触发一些操作。我认为最简单的方法是使用注释,例如:
class MyClass {
//...
@DoSomethingElseInTheBackground
function void doSomething() {
//...
}
//...
}
我写了一个 BeanPostProcessor 之前,这非常简单。那么有没有办法做我正在寻找的事情呢?我的部分灵感来自于 @Transational
。
I'm using Spring 2.5 for dependency injection management. I have a few classes that need to have some action triggered in the background when certain methods are called. I figured that the easiest way to do this would be with an annotation, like:
class MyClass {
//...
@DoSomethingElseInTheBackground
function void doSomething() {
//...
}
//...
}
I've written a BeanPostProcessor before and that was quite simple. So is there a way to do what I'm looking for? I'm inspired, in part, by @Transational
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您确实受到了
@Transactional
的启发。它使用 Spring 的内置功能 Spring AOP框架。看一下: @AspectJ 示例带有基于注释的切入点,它描述了完全相同的用例。
You are correctly inspired by
@Transactional
. It uses Spring AOP, built-in feature of Spring framework.Have a look at: @AspectJ examples with pointcuts based on annotations which describes the exact same use case.