介绍:
这个问题与如何使用 Spring Boot 将目录首先放在类路径上非常相似?我已经搜索了一下,但不幸的是到目前为止没有任何效果。既没有更改为packaging=ZIP
in the ,spring-boot-maven-plugin
也没有loader.path
按照boot features external config或how to - properties and configuration中的说明使用,所以我一定遗漏了一些东西。还有一件事,如果可能的话,我想避免将每个配置文件作为参数传递给file://...
.
我有一个应用程序,它最初是几种服务类型的模拟器:sftp、soap 等。最初它支持通过属性文件配置的每种服务器类型的 1 个实例。
我现在已经更新它以支持不同端口上的多个服务器实例,并且配置是在 YAML 文件中完成的,而且我还从经典 spring 迁移到 boot。最后,应用程序作为 RPM 交付,其结构如下
installation-dir
|--bin
| '-- simulator.sh [lifecycle management script]
|--config
| |--application.properties
| |--log4j2.xml
| |--samples [sample files for various operations]
| | |-- sample1.csv
| | |-- sample2.csv
| | '-- sample3.csv
| |--simulators.yaml [simulators config]
| '--simulator.jks
|--lib
| '-- simulator-1.0.jar
'--log
'-- simulator.log
之前,simulators.sh
启动主类,将config
目录添加到类路径中,spring 会加载属性文件而没有任何问题:
java <other args> -cp "..." com.whatever.SimulatorLauncher
自迁移以来,它现在启动生成的 jar,因此-cp
不再使用,并且我无法让它获取配置文件:
java <other args> lib/simulator-1.0.jar
忽略它没有找到的事实,aplication.properties
模拟器的配置如下加载:
@Configuration
@ConfigurationProperties(locations = {"classpath:/simulators.yml"}, ignoreUnknownFields = false, prefix = "simulators")
public class SimulatorSettings {
private static final Logger log = LoggerFactory.getLogger(SimulatorSettings.class);
@NotNull
private List<SftpSettings> sftp;
@NotNull
private List<SoapSettings> soap;
由于配置应该是可更新的,无需重新打包应用程序,所有文件都从生成的 jar 中排除,但打包在 rpm 下config
:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.6</version>
<configuration>
<excludes>
<!-- these files will be included in the rpm under config -->
<exclude>application.properties</exclude>
<exclude>log4j2.xml</exclude>
<exclude>samples/**</exclude>
<exclude>simulators.yml</exclude>
<exclude>simulator.jks</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
<configuration>
<mainClass>com.whatever.SimulatorLauncher</mainClass>
<layout>ZIP</layout>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>rpm-maven-plugin</artifactId>
<version>2.1.5</version>
...
<configuration>
...
<mapping>
<directory>${rpm.app.home}/config</directory>
<sources>
<source>
<location>src/main/resources</location>
<includes>
<include>application.properties</include>
<include>simulators.yml</include>
<include>log4j2.xml</include>
<include>nls-sim.jks</include>
</includes>
</source>
</sources>
<filemode>755</filemode>
</mapping>
非常感谢任何帮助或提示。