配置 spring bean(通过 XML)而不重复类属性
我需要创建很多具有相同类的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个:
请注意,如果您向父 bean 添加一些属性,那么它们将自动应用于所有子 bean(提取公共属性的便捷方法)。
Try this:
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).