将xml id的值注入到spring bean中
我很好奇是否有人知道实现我的目标的快速方法。 我想将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需实现 BeanNameAware,Spring 将提供 id 或 name 属性(无论您使用哪个),例如
Just implement
BeanNameAware
, and Spring will supply theid
orname
attribute (whichever one you used), e.g.