如何使用Spring编写注解触发的方法拦截器?

发布于 2025-01-02 14:34:02 字数 456 浏览 0 评论 0原文

我使用 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 技术交流群。

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

发布评论

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

评论(1

夏见 2025-01-09 14:34:02

您确实受到了 @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.

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