我有一个需要在服务器上作为jar运行的服务。因为jar的组件和依赖关系使用spring& spring boot,这个jar包含spring,必须配置一个application.yml文件。我正在使用ansible来部署系统,但是我无法成功启动服务,因为在启动时,服务没有获取application.yml文件。经过一些调试后,我发现如果我在与application.yml不同的目录中启动服务,那么它也会失败。
有效的设置:
./gradlew build
deploy_dir
将以下脚本(start.sh)复制到deploy_dir:
#!/bin/bash
nohup /home/ubuntu/deploy_dir/bin/project -Dspring.config.location=/home/ubuntu/deploy_dir/application.yml 1>/home/ubuntu/deploy_dir/out.log 2>&1 &
这些步骤有效,但如果我将start.sh复制到主目录,并从那里运行,则application.yml不会被拾取,我会收到以下错误。
2017-10-25 14:24:58.730 INFO 31582 --- [ main] o.s.b.f.s.DefaultListableBeanFactory : Overriding bean definition for bean 'dataSource' with a different definition: replacing [Root bean: class [null]; scope=; abstract=false; lazyInit=false; autowireMode=3; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=org.springframework.boot.autoconfigure.jdbc.DataSourceConfiguration$Hikari; factoryMethodName=dataSource; initMethodName=null; destroyMethodName=(inferred); defined in class path resource [org/springframework/boot/autoconfigure/jdbc/DataSourceConfiguration$Hikari.class]] with [Root bean: class [null]; scope=; abstract=false; lazyInit=false; autowireMode=3; dependencyCheck=0; autowireCandidate=true; primary=false; factoryBeanName=org.springframework.boot.autoconfigure.jdbc.DataSourceConfiguration$Tomcat; factoryMethodName=dataSource; initMethodName=null; destroyMethodName=(inferred); defined in class path resource [org/springframework/boot/autoconfigure/jdbc/DataSourceConfiguration$Tomcat.class]]
2017-10-25 14:24:59.599 INFO 31582 --- [ main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [class org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$c78541e8] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
重要的是我从主目录(或者与application.yml不同的目录)中运行start.sh,因为我坚信让它在那里工作,将允许jar使用正确的配置启动ansible。
Gradle文件:
apply plugin: 'groovy'
apply plugin: 'application'
apply plugin: 'org.springframework.boot'
sourceCompatibility = 1.8
targetCompatibility = 1.8
dependencies {
compile('org.springframework.boot:spring-boot-starter-data-jpa')
compile 'org.codehaus.groovy:groovy-all:2.4.0'
compile group: 'log4j', name: 'log4j', version: '1.2.17'
compile('com.github.groovy-wslite:groovy-wslite:1.1.2')
compile group: 'org.quartz-scheduler', name: 'quartz', version: '2.3.0'
compile group: 'com.google.code.gson', name: 'gson', version:'2.8.0'
runtime('org.postgresql:postgresql')
runtime('com.h2database:h2')
}
jar {
baseName = 'project'
version = '0.0.1'
manifest {
attributes(
'Class-Path': configurations.compile,
'Main-Class': 'com.MainClass'
)
}
}
答案 0 :(得分:0)
请尝试将您的配置位置设置为目录。同时在前面加上“file:”前缀。
-Dspring.config.location=file:/home/ubuntu/deploy_dir/
答案 1 :(得分:0)
我找到的解决方法是在start.sh中添加一行到cd到脚本工作的目录。这适用于在服务器上手动安装和运行start.sh脚本。我真的不知道为什么会这样,看起来很阴暗,但它才有用。
start.sh
#!/bin/bash
cd /home/ubuntu/deploy_dir
nohup /home/ubuntu/deploy_dir/bin/project -Dspring.config.location=/home/ubuntu/deploy_dir/application.yml 1>/home/ubuntu/deploy_dir/out.log 2>&1 &