如何在Spring-AOP中实现抽象工厂模式?

发布于 2024-08-08 14:14:27 字数 50 浏览 4 评论 0原文

使用 AOP 为基于 spring 的项目实现抽象工厂模式应该与普通项目有什么不同吗?

Is implementing the Abstract Factory pattern for a spring-based project with AOP should be any different than in a normal project?

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

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

发布评论

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

评论(3

梦里泪两行 2024-08-15 14:14:27

综合考虑,它应该更简单;从技术上讲,Spring 本身就像一个抽象工厂,这种模式深刻地告知了 Spring“希望”您用它做的大多数事情。

It should be simpler, all things considered; technically, Spring acts like an Abstract Factory itself, and that pattern deeply informs most things that Spring "wants" you to do with it.

漫雪独思 2024-08-15 14:14:27

如果没有更具体的例子,我不得不说“不”。 Spring AOP 非常擅长处理您的代码,无论其结构如何。

Without a more concrete example, I'd have to say "no". Spring AOP is pretty good at working around your code, whatever structure it's in.

坦然微笑 2024-08-15 14:14:27

取决于你的AOP。如果您将 AspectJ 与加载时或编译时编织一起使用,那么就不会有问题。如果您使用基于 spring 的 AOP,那么您会遇到问题,因为 spring 只会将方面放在它创建的 bean 上。这意味着如果你的工厂生产 bean,它将不会有任何 AOP 仪器

Depends on your AOP. If you're using AspectJ with load time or compile time weaving, then you don't have an issue. If you're using the spring based AOP, then you have an issue because spring will only put aspects onto beans it creates. Meaning that if your factory makes the bean, it won't have any AOP instrumentation

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