Spring 应用程序上下文 XML 宏
是否可以在我的 Spring 应用程序上下文 XML 文件中定义一个宏,我可以重复使用它来生成具有不同 id 前缀和属性值的类似 bean 块?
我正在使用 Quartz 调度程序,它需要为每个作业定义辅助 bean。我还使用描述的 bean delegate 这里需要为计划的作业定义更多的bean,所以如果可以用这样的东西定义一个作业那就太好了:
Is it possible to define a macro in my Spring application context XML file that i can use repeatedly to produce similar bean blocks just with different id prefixes and property values?
I'm using the Quartz scheduler which requires to define helper beans for each job. I'm also using bean delegation described here which requires even more bean definitions for a scheduled job, so it would be nice if could define a job with something like this:
<jobs:scheduleJob prefix="someJob" class="this.is.my.Class" cronSetting="0 0 * * * ?" />
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将自定义架构与 Spring 结合使用。该线程讨论了它并提供了参考为框架构建自定义 Spring 配置标签< /a>.
You can use custom schema with Spring. This thread discusses it and provides references Building custom Spring config tags for a framework.