将xml id的值注入到spring bean中

发布于 2024-12-25 06:56:41 字数 396 浏览 1 评论 0原文

我很好奇是否有人知道实现我的目标的快速方法。 我想将 id 的值注入到我的 spring bean 上的字符串中。

简而言之,这就是我想要的:

<bean id="matsientst" class="com.matt.Matt"/>

public class Matt {
    @Value("#id")
    String id;
}

我需要这个的原因是我们在 spring xml 中配置了很多对象,我还需要在数据库中管理这些对象。 Spring id 是我可以使用的一个方便的密钥。我不想注入所有对象,因为我已经将它们全部抽象化了,我可以优雅地让抽象类设置 ID。也就是说,如果这有效的话。 谢谢 -哑光

I'm curious if anyone knows a quick way to accomplish my goal.
I want to inject the value of the id into a String on my spring bean.

This is what I want in a nutshell:

<bean id="matsientst" class="com.matt.Matt"/>

public class Matt {
    @Value("#id")
    String id;
}

The reason I need this is that we have a lot of objects that are configured in our spring xml that I also need to manage in the DB. The Spring id is a convenient key that I can use. I don't want to have to inject all my objects since I have them all abstracted I could elegantly have the Abstract class set the ID. That is, if this works.
Thanks
-matt

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

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

发布评论

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

评论(1

倾城花音 2025-01-01 06:56:41

只需实现 BeanNameAware,Spring 将提供 id 或 name 属性(无论您使用哪个),例如

public class Matt implements BeanNameAware {
    private String id;

    public void setName(String beanName) {
       this.id = beanName;
    }
}

Just implement BeanNameAware, and Spring will supply the id or name attribute (whichever one you used), e.g.

public class Matt implements BeanNameAware {
    private String id;

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