Spring允许使用变量作为资源名称吗?
在主文件中,我使用标签导入来包含另一个带有 bean 定义的 xml 文件。是否可以使用变量作为资源的名称/路径?例如
<import resource="${custom_beans.xml}"/>
? 谢谢。
In main file I use tag import for include another xml file with bean definitions. Is possible to use variable as name/path of resource? E.g.
<import resource="${custom_beans.xml}"/>
?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,它不会,因为必须在变量可用之前解决导入问题。
No it does not, because the import must been resolved before the varaibles are available.