2

我正在尝试注入一个在server.env.

 @Inject
 @ConfigProperty(name = "property")
 private String serverProperty;

内容 server.env

property=server-env-property

我已经在里面添加了pom.xml

<serverEnv>src/main/liberty/config/server.env</serverEnv>

期间读取liberty-maven-plugin:2.2:package-server

 CWWKM2144I: Update server configuration file server.env from /Users/abalaniuc/code/config/src/main/liberty/config/server.env.

但是,当应用程序执行时,我得到了这个错误:

 The property property was not found in the configuration.

堆栈跟踪:

[ERROR   ] CWMCG5003E: The [BackedAnnotatedField] @Inject @ConfigProperty private com.microprofile.study.config.config.ConfigTestController.serverProperty InjectionPoint dependency was not resolved. Error: java.util.NoSuchElementException: CWMCG0015E: The property property was not found in the configuration.
        at com.ibm.ws.microprofile.config.impl.AbstractConfig.getValue(AbstractConfig.java:175)
        at [internal classes]

显然我错过了一些东西,但无法弄清楚到底是什么。你能帮我么?

正如以下答案中所建议的,我已从.属性名称中删除,但仍然得到相同的结果。

Liberty 插件配置:

<plugin>
  <groupId>net.wasdev.wlp.maven.plugins</groupId>
  <artifactId>liberty-maven-plugin</artifactId>
  <version>${openliberty.maven.version}</version>
  <executions>
    <execution>
      <id>package-server</id>
      <phase>package</phase>
      <goals>
        <goal>create-server</goal>
        <goal>install-apps</goal>
        <goal>package-server</goal>
      </goals>
      <configuration>
        <outputDirectory>target/wlp-package</outputDirectory>
      </configuration>
    </execution>
  </executions>
  <configuration>
    <assemblyArtifact>
      <groupId>io.openliberty</groupId>
      <artifactId>openliberty-runtime</artifactId>
      <version>${openliberty.version}</version>
      <type>zip</type>
    </assemblyArtifact>
    <configFile>src/main/liberty/config/server.xml</configFile>
    <serverEnv>src/main/liberty/config/server.env</serverEnv>
    <bootstrapPropertiesFile>src/main/liberty/config/bootstrap.properties</bootstrapPropertiesFile>
    <appArchive>${project.build.directory}/${final.name}.war</appArchive>
    <packageFile>${project.build.directory}/${final.name}.jar</packageFile>
    <include>runnable</include>
    <serverName>${final.name}</serverName>
    <installAppPackages>project</installAppPackages>
  </configuration>
</plugin>

要启动应用程序,我会这样做:

mvn clean package

java -jar target/config.jar
4

2 回答 2

3

环境变量通常不允许句点 -有关详细信息,请参阅此帖子。但是您可以在环境变量中使用下划线。

MicroProfile Config 应该将 env vars 中的下划线转换为句点 - 它还应该重新映射区分大小写。此处讨论映射。

因此,我的建议是尝试将server.property=server-env-propertyserver.env 更改为server_property=server-env-propertySERVER_PROPERTY=server-env-property查看是否有效。

更新:主要问题是为 Liberty 服务器运行的环境定义环境变量的方式。

当使用server命令启动/运行服务器时,它将读取服务器的 server.env 文件并为服务器设置这些环境变量(除了已经在 shell 上定义的任何环境变量)。

使用该java -jar server.jar方法时,它不会读取 server.env 文件,而是会读取 shell 上定义的环境变量。使用此方法时,用户应明确设置环境变量(即export MY_VAR=MyValue)或应使用特定于 shell 的命令来读取 server.env 文件(即. server.envenv X=Y等)。

希望这可以帮助!

于 2019-09-23T15:25:43.270 回答
2

句点不是环境变量中的有效字符。如果您在 server.env 中指定它应该可以工作:

server_property=server-env-property

MicroProfile 配置规范将自动将ConfigProperty注释中的句点转换_为用于查找的句点。

于 2019-09-23T15:23:50.263 回答