配置 spring bean(通过 XML)而不重复类属性

发布于 2024-11-29 08:52:23 字数 461 浏览 0 评论 0原文

我需要创建很多具有相同类的 spring beans。类似这样的事情:

<bean id="id1" class="com.mycompany.long.very.long.package.of.the.world.MyLostClass">
...
</bean>

<bean id="id2" class="com.mycompany.long.very.long.package.of.the.world.MyLostClass">
...
</bean>

<bean id="id3" class="com.mycompany.long.very.long.package.of.the.world.MyLostClass">
...
</bean>

...

不必在每个 bean 定义中复制类属性,这会更具可读性和令人愉快。有没有办法避免重读x次课程?

I need to create a lot of spring beans with the same class. Something like that :

<bean id="id1" class="com.mycompany.long.very.long.package.of.the.world.MyLostClass">
...
</bean>

<bean id="id2" class="com.mycompany.long.very.long.package.of.the.world.MyLostClass">
...
</bean>

<bean id="id3" class="com.mycompany.long.very.long.package.of.the.world.MyLostClass">
...
</bean>

...

It would be more readable and pleasant to not have to copy the class attribute in each bean definition. Is there a way to avoid repeting x times the class ?

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

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

发布评论

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

评论(1

从来不烧饼 2024-12-06 08:52:23

试试这个:

<bean id="myLostClass" abstract="true" class="com.mycompany.long.very.long.package.of.the.world.MyLostClass"/>

<bean id="id1" parent="myLostClass">
...
</bean>

<bean id="id2" parent="myLostClass">
...
</bean>

<bean id="id3" parent="myLostClass">
...
</bean>

请注意,如果您向父 bean 添加一些属性,那么它们将自动应用于所有子 bean(提取公共属性的便捷方法)。

Try this:

<bean id="myLostClass" abstract="true" class="com.mycompany.long.very.long.package.of.the.world.MyLostClass"/>

<bean id="id1" parent="myLostClass">
...
</bean>

<bean id="id2" parent="myLostClass">
...
</bean>

<bean id="id3" parent="myLostClass">
...
</bean>

Note that if you add some properties to a parent bean, then they will be automatically applied to all the children (convenient way to extract common properties).

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