通过pom.xml设置VM参数

发布于 2025-01-21 23:25:57 字数 2075 浏览 0 评论 0原文

我需要通过pom.xml设置-duser.language,因为我需要特定于语言的数据库查询。 当我将-duser.language = tr传递给VM选项时,在Intellij上运行Spring Boot应用程序时,它会起作用。但是我需要在pom.xml进行分析中完成此操作。

下面的方式不起作用。语言未设置。

  <profile>
      <properties>
            <argLine>-Duser.language=tr -Duser.region=TR</argLine>
      </properties>
  ...
  </profile>

 <plugin>
      <groupId>org.apache.maven.plugins</groupId>
      <artifactId>maven-compiler-plugin</artifactId>
      <version>3.8.1</version>
      <configuration>
           <source>${java.version}</source>
           <target>${java.version}</target>
           <verbose>true</verbose>
           <fork>true</fork>
           <compilerArgs>
                <arg>-J-Duser.language=tr_TR</arg>
           </compilerArgs>
      </configuration>
 </plugin>

 <plugin>
     <groupId>org.apache.maven.plugins</groupId>
     <artifactId>maven-surefire-plugin</artifactId>
     <version>2.22.2</version>
     <configuration>
          <argLine>-Duser.language=tr -Duser.region=TR</argLine>
          <systemPropertyVariables>
                 <user.language>tr</user.language>
                 <user.region>TR</user.region>
          </systemPropertyVariables>
     </configuration>
 </plugin>

只有这是有效的,但是我需要使用MVN Spring-boot:运行来运行应用程序,这不是一个选择。

 <plugin>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-maven-plugin</artifactId>
      <configuration>
            <jvmArguments>
                -Duser.language=tr
            </jvmArguments>
      </configuration>
      ...
 </plugin>

如何通过pom.xml通过VM参数?

I need to set -Duser.language via pom.xml since I need language specific database queries.
When I pass -Duser.language=tr to VM options upon running spring boot application on Intellij, it works. But I need this to be done in pom.xml for profiling.

Below ways are not working. Language is not set.

  <profile>
      <properties>
            <argLine>-Duser.language=tr -Duser.region=TR</argLine>
      </properties>
  ...
  </profile>

 <plugin>
      <groupId>org.apache.maven.plugins</groupId>
      <artifactId>maven-compiler-plugin</artifactId>
      <version>3.8.1</version>
      <configuration>
           <source>${java.version}</source>
           <target>${java.version}</target>
           <verbose>true</verbose>
           <fork>true</fork>
           <compilerArgs>
                <arg>-J-Duser.language=tr_TR</arg>
           </compilerArgs>
      </configuration>
 </plugin>

 <plugin>
     <groupId>org.apache.maven.plugins</groupId>
     <artifactId>maven-surefire-plugin</artifactId>
     <version>2.22.2</version>
     <configuration>
          <argLine>-Duser.language=tr -Duser.region=TR</argLine>
          <systemPropertyVariables>
                 <user.language>tr</user.language>
                 <user.region>TR</user.region>
          </systemPropertyVariables>
     </configuration>
 </plugin>

Only this is working but I need to run application with mvn spring-boot:run for this to work and that is not an option.

 <plugin>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-maven-plugin</artifactId>
      <configuration>
            <jvmArguments>
                -Duser.language=tr
            </jvmArguments>
      </configuration>
      ...
 </plugin>

How can I pass vm arguments via pom.xml?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文