0

我的詹金斯工作复制属性文件(秘密插件)如下

if [[ ! -d ~/.app ]]
then
mkdir ~/.app
fi
cp ${SECRET}/app.properties ~/.app/app.properties

这似乎有效,因为我确实得到了

  • cp /scratch/jenkins/secrets/d97a8ac1-8edc-4b15-b328-dc777d1b13c9/app.properties /home/jenkins/.app/app.properties

我部署的战争具有以下配置

<bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
   <property name="location" value="file:///home/jenkins/.app/app.properties"/>
</bean>

<bean id="facebookConfig" class="com.dk.integration.fb.service.FacebookConfig">
    <property name="applicationSecret" value="${app.secret}"></property>
    <property name="applicationKey" value="${app.key}"></property>
    <property name="applicationRedirectURI" value="${app.redirecturi}"></property>
</bean>

app.properties
app.secret=...
app.key=....
app.redirecturi=http://.....

但是,我仍然无法在 org.springframework.beans.factory.config.PlaceholderConfigurerSupport .doProcessProperties(PlaceholderConfigurerSupport.java:209) 处解析占位符“app.secret”

我没有多个 PropertyPlaceholderConfigurer。任何帮助都感激不尽。

4

1 回答 1

1

DEV@Cloud 构建从属节点和 RUN@Cloud 服务器节点是不同的主机。您的 jenkins 作业不能用于准备运行时环境。要注入此类配置,请使用配置参数

于 2013-06-17T08:03:38.047 回答