是否可以在spring mybatis的mapper xml中使用yaml的profile变量?
可以在spring mybatis的mapper xml中使用yaml的profile变量吗?
如果可以的话我该如何使用?
It is possible to use yaml's profile variable in spring mybatis's mapper xml?
If is it possible, how i can use?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您不能以简单的方式执行此操作,因为 *.yml 和 *.xml 文件都是在应用程序启动时加载的。相反,您可以在构建时使用 maven/gradle 插件将值传播到 XML 中的占位符中。
例如,对于maven,这可以通过 maven-resource-plugin< 来完成/a>:
例如,如果我们有一个资源
src/main/resources/hello.txt
包含一个
pom.xml
,并且在调用
mvn 时resources:resources
将在target/classes/hello.txt
中创建资源输出,其中包含:Ie maven 从
标记获取值并将其放入占位符${name}
中。I think you cannot do this in a simple way as both *.yml and *.xml files are loaded at application start-up time. Instead you can propagate values into placeholders within XML at build time using maven/gradle plugin.
E.g. for maven this can be done with maven-resource-plugin:
For example, if we have a resource
src/main/resources/hello.txt
containingand a
pom.xml
withUpon calling
mvn resources:resources
will create a resource output intarget/classes/hello.txt
which contains:I.e. maven takes a value from
<name/>
tag and puts it into placeholder${name}
.