是否可以在spring mybatis的mapper xml中使用yaml的profile变量?

发布于 2025-01-11 10:54:46 字数 75 浏览 0 评论 0原文

可以在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 技术交流群。

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

发布评论

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

评论(1

月亮坠入山谷 2025-01-18 10:54:46

我认为您不能以简单的方式执行此操作,因为 *.yml 和 *.xml 文件都是在应用程序启动时加载的。相反,您可以在构建时使用 maven/gradle 插件将值传播到 XML 中的占位符中。

例如,对于maven,这可以通过 maven-resource-plugin< 来完成/a>:

例如,如果我们有一个资源 src/main/resources/hello.txt 包含

Hello ${name}

一个 pom.xml ,并且

<project>
  ...
  <name>My Resources Plugin Practice Project</name>
  ...
  <build>
    ...
    <resources>
      <resource>
        <directory>src/main/resources</directory>
        <filtering>true</filtering>
      </resource>
      ...
    </resources>
    ...
  </build>
  ...
</project>

在调用 mvn 时resources:resources 将在 target/classes/hello.txt 中创建资源输出,其中包含:

Hello My Resources Plugin Practice Project

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 containing

Hello ${name}

and a pom.xml with

<project>
  ...
  <name>My Resources Plugin Practice Project</name>
  ...
  <build>
    ...
    <resources>
      <resource>
        <directory>src/main/resources</directory>
        <filtering>true</filtering>
      </resource>
      ...
    </resources>
    ...
  </build>
  ...
</project>

Upon calling mvn resources:resources will create a resource output in target/classes/hello.txt which contains:

Hello My Resources Plugin Practice Project

I.e. maven takes a value from <name/> tag and puts it into placeholder ${name}.

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