验证器中的自动装配

发布于 2024-10-16 18:13:35 字数 248 浏览 6 评论 0 原文

我使用自己的验证器类,并在控制器中使用 @Autowired -annotation 对其进行标记。我还必须使用数据库和 LDAP 连接,因此我也在同一个控制器构造函数中自动装配它们。

我的验证器也必须使用数据库和 ldap 连接,因此我必须在其构造函数中自动装配数据库和 ldap。确实是双重自动装配!但现在我的问题是如何让数据库和 ldap 在验证器中工作?如果没有接线,它们将返回 null。有什么帮助吗?

这是我之前关于自动装配的问题的延续。

I use my own validator class and mark it with @Autowired -anotation in my controller. I also have to use database and ldap connections, so I autowire them too in the same controller constructor.

My validator must use database and ldap connections too, so I'd have to autowire database and ldap in its constructor. It is double autowiring indeed! But now my problem is how can I get the database and ldap work in validator? With no wiring, they return null. Any help?

This is a continuence to my earlier question about autowiring.

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

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

发布评论

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

评论(3

雨后彩虹 2024-10-23 18:13:36

我在这里没有看到真正的问题。阅读 Spring 参考的以下部分:

I don't see a real question in here. Read these parts of the Spring Reference:

将军与妓 2024-10-23 18:13:36

自动接线实际上是否按照您期望的方式进行?或者,您可以明确地注入您的依赖项以确保安全。

Are the autowires actually doing what you expect them to do? Alternatively you can explicitely inject your dependencies to be sure.

桃扇骨 2024-10-23 18:13:36

控制器中的@Autowire将验证器连接到控制器。您还需要在验证器中添加@Autowire以连接ldap和数据库bean。还请在您的问题中添加您的代码和配置,以便我们更好地理解它。

The @Autowire in the Controller is wiring validator to the controller.You need to add @Autowire in Validator as well to wire ldap and database beans. Please also add your code and configuration in your question so that we can understand it better.

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