我正在尝试将外部属性文件添加到可执行jar中,但现在还没有成功。
问题:是否无法将外部属性文件包含在可执行jar中?
当我在本地运行我的程序时,将batch.properties
放在src/main/resources
下,它可以正常工作。但是在部署jar和batch.properties
之后失败了,在/etc/init.d/
下链接它,放了jar和batch.properties
/usr/local/myapp/myapp.jar
/usr/local/myapp/batch.properties
/etc/init.d/my-app --(symlink)--> /usr/local/myapp/myapp.jar
my-app
可以像普通服务一样执行:
/etc/init.d/my-app start
但它表示由于缺少占位符,某些bean无法实例化。
Invalid bean definition with name 'dataSource' defined in class path resource [batch.xml]: Could not resolve placeholder 'spring.datasource.batch.class_name' in string value "${spring.datasource.batch.class_name}"; nested exception is java.lang.IllegalArgumentException: Could not resolve placeholder 'spring.datasource.batch.class_name' in string value "${spring.datasource.batch.class_name}"
我的pom.xml是这样的:
<project ...>
// Some other definitions...
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<mainClass>my.project.Bootstrap</mainClass>
<executable>true</executable>
</configuration>
</plugin>
</plugins>
</build>
</project>
Spring设置就像这样:
<?xml version="1.0" encoding="UTF-8"?>
<beans ...">
<context:property-placeholder location="classpath*:batch.properties" />
<!-- Some bean definitions -->
</beans>
任何帮助或评论都会受到如此多的赞赏。
修改
我现在无法成功,但我还是决定拆分配置文件并将属性文件相应地包含在可执行jar中。
然而,能够读取外部属性文件会更好,任何帮助仍然会受到欢迎。
答案 0 :(得分:4)
您可以在.jar旁边添加外部属性文件,只要您将其称为application.properties
。
如果无法重命名属性文件,还可以将外部属性文件的路径作为选项提供:
java -jar myproject.jar --spring.config.location=/path/to/batch.properties
#Or for executable jars
./myproject.jar --spring.config.location=/path/to/batch.properties
您还可以创建符号链接application.properties
- &gt; batch.properties
。
请参阅Externalized configuration。
修改强>
这是我的maven配置:
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>1.3.3.RELEASE</version>
<configuration>
<executable>true</executable>
</configuration>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
在mvn clean install之后,我得到2个罐子:
backend/target [ ll
total 53M
-rwxr--r-- 1 adenoyelle adenoyelle 53M avril 22 10:56 backend-1.0-SNAPSHOT.jar
-rw-r--r-- 1 adenoyelle adenoyelle 353K avril 22 10:56 backend-1.0-SNAPSHOT.jar.original
然后,我将第一个jar复制到目标文件夹并在其旁边放置一个configuration.properties
:
backend@[...]:~/backend$ ll
total 53900
drwxrwxr-x 2 backend backend 4096 Apr 21 13:56 ./
drwxr-xr-x 6 backend backend 4096 Apr 21 13:56 ../
-rw-rw-r-- 1 backend backend 511 Apr 20 16:13 application.properties
-rwxr--r-- 1 backend backend 55175294 Apr 20 19:06 backend-1.0-SNAPSHOT.jar*
lrwxrwxrwx 1 backend backend 24 Apr 20 19:20 backend -> backend-1.0-SNAPSHOT.jar*
-rw-r--r-- 1 backend backend 179 Apr 20 19:26 backend.service
您可以看到我还创建了一个名为backend.service
的文件,以便通过systemd
将jar作为服务安装。
以下是文件的内容:
[Unit]
Description=backend
After=syslog.target
[Service]
User=backend
ExecStart=/home/backend/backend
SuccessExitStatus=143
[Install]
WantedBy=multi-user.target
/etc/systemd/system
中有一个符号链接到此文件:
backend@[...]:/etc/systemd/system$ ll | grep backend
lrwxrwxrwx 1 root root 37 Apr 20 19:23 backend.service -> /home/backend/backend.service