Springboot应用程序在使用Java 10的Docker中启动时遇到困难

时间:2018-04-23 09:26:10

标签: java spring docker spring-boot

解决方案

椅子和键盘之间存在错误

问题是SPRING_PROFILES_ACTIVE环境变量指向一个不存在的配置文件。将其更改为正确的名称可以解决问题。我原以为Spring会输出一个错误,但是很好。

原始问题:

我有一个"你好世界"在Java10中使用Spring引导运行的Java App构建。它直接在我的机器上运行正常,但是当尝试使用docker启动时它会遇到以下输出:

(The Srping ascii art)

 :: Spring Boot ::        (v2.0.1.RELEASE)

WARNING: An illegal reflective access operation has occurred WARNING: Illegal reflective access by org.codehaus.groovy.reflection.CachedClass (jar:file:/app.jar!/BOOT-INF/lib/groovy-2.4.15.jar!/) to method java.lang.Object.finalize()
WARNING: Please consider reporting this to the maintainers of org.codehaus.groovy.reflection.CachedClass WARNING: Use --illegal-access=warn to enable warnings of further illegal reflective access operations
WARNING: All illegal access operations will be denied in a future release

正在运行的流程:

java -Xmx800m -Djava.security.egd=file:/dev/./urandom -jar /app.jar

它直接在我的笔记本电脑(Mac OS)和我的同事(Windows 7)上运行良好,但在本地和Kubernetes(AWS)上的docker都失败了

我已尝试将弹出日志级别配置为DEBUG,但没有任何效果。 我还尝试编辑$JAVA_HOME/conf/security/java.security以直接更改java securerandom.source属性,该属性也不起作用。

编辑: dockerfile是一个使用它的FROM:

FROM openjdk:10-jdk

RUN apt-get update && \
    apt-get install -y openssl curl
ADD java.security /docker-java-home/conf/security/java.security

ONBUILD ARG BUILD_VERSION_NO="no-version"

ENV SPRING_PROFILES_ACTIVE=prod
#ENV JAVA_OPTS="-Xdebug -Xrunjdwp:server=y,transport=dt_socket,suspend=n"

ONBUILD COPY target/*.jar app.jar
ONBUILD RUN sh -c 'touch /app.jar'
ONBUILD RUN echo "$BUILD_VERSION_NO" > /version

EXPOSE 8080

ENTRYPOINT [ "sh", "-c", "java $JAVA_OPTS -jar /app.jar" ]

笔记本电脑中的java版本是

java version "10.0.1" 2018-04-17
Java(TM) SE Runtime Environment 18.3 (build 10.0.1+10)
Java HotSpot(TM) 64-Bit Server VM 18.3 (build 10.0.1+10, mixed mode)

使用等效的openjdk打包应用程序并不能解决问题

openjdk version "10.0.1" 2018-04-17
OpenJDK Runtime Environment (build 10.0.1+10)
OpenJDK 64-Bit Server VM (build 10.0.1+10, mixed mode) 

1 个答案:

答案 0 :(得分:0)

回答我自己的问题以防其他人碰到这个问题:

SPRING_PROFILES_ACTIVE环境变量包含" prod"而应用中的弹簧轮廓是" pro"。更改Dockerfile中的值可以解决问题。