我目前正在开发一个基于Java 17的机器人自动化应用程序,该应用程序中使用的构建工具是Maven 3.9.2。
我已经成功地在本地开发环境中构建了这个应用程序。
mvn clean install -Pdev -DactiveProfile=dev -DconfigFile=config-dev.properties
字符串
此命令用于构建和安装具有特定配置文件和配置属性的Maven项目。总而言之,此命令将清理项目,编译和打包项目,然后将其安装到本地Maven存储库中。它还将激活“dev”配置文件并指定一个名为“config-dev.properties“的配置文件以供构建期间使用。“dev”配置文件和“example-dev.properties”的具体信息如下所示。
在maven命令中使用特殊参数来处理与手头项目相关的特殊场景。
**-Pdev:**这会激活名为“dev”的Maven配置文件。Maven配置文件允许您针对不同的环境或场景自定义构建过程。在本例中,“dev”配置文件被激活。
**-DactiveProfile=dev:**这将设置一个名为“activeProfile”的系统属性,其值为“dev”。这可以在Maven构建中使用,以根据活动配置文件有条件地执行某些任务。
**-DSPRING File = config-dev.properties:**这将设置一个名为“DSPRING File”的系统属性,其值为“DSPRING dev.properties”。与“activeProfile”属性类似,这允许将配置参数传递给Maven构建。在本例中,它指定了一个在构建过程中使用的配置文件。
对于多个环境,我维护了多个配置文件,其中包含开发环境特定的信息。Config-dev.properties
带有rapport首选项的Configuration.xlsm也可用,selenium应用程序将其用作参考。这些文件位于resource文件夹中。
POM.xml相关内容
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.example</groupId>
<artifactId>report-automation</artifactId>
<version>1.0-SNAPSHOT</version>
<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<!-- Default config file for fallback -->
<config.file>config.properties</config.file>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.9.0</version>
<configuration>
<source>${maven.compiler.source}</source>
<target>${maven.compiler.target}</target>
<encoding>${project.build.sourceEncoding}</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>3.3.0</version> <!-- Use your specific version -->
<configuration>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.1.2</version>
<configuration>
<suiteXmlFiles>
<suiteXmlFile>testng.xml</suiteXmlFile>
</suiteXmlFiles>
<includes>
<include>**/*Model.java</include>
</includes>
</configuration>
</plugin>
</plugins>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
<excludes>
<exclude>Configuration.xlsm</exclude>
</excludes>
</resource>
</resources>
</build>
<profiles>
<!-- Profile for Development Environment -->
<profile>
<id>dev</id>
<properties>
<config.file>config-dev.properties</config.file>
<activeProfile>dev</activeProfile>
</properties>
</profile>
<!-- Profile for Local QA Environment -->
<profile>
<id>localqa</id>
<properties>
<config.file>config-localqa.properties</config.file>
<activeProfile>localqa</activeProfile>
</properties>
</profile>
<!-- Add profiles for other environments -->
<!--
<profile>
<id>clientuat</id>
<properties>
<config.file>config-clientuat.properties</config.file>
<activeProfile>clientuat</activeProfile>
</properties>
</profile>
<profile>
<id>clientqa</id>
<properties>
<config.file>config-clientqa.properties</config.file>
<activeProfile>clientqa</activeProfile>
</properties>
</profile>
<profile>
<id>production</id>
<properties>
<config.file>config-production.properties</config.file>
<activeProfile>production</activeProfile>
</properties>
</profile>
-->
</profiles>
<dependencies>
<!-- Selenium -->
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>4.11.0</version>
</dependency>
<!-- TestNG -->
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>7.4.0</version>
</dependency>
<!-- ExtentReports -->
<dependency>
<groupId>com.aventstack</groupId>
<artifactId>extentreports</artifactId>
<version>5.0.9</version>
</dependency>
<!-- SLF4J -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>2.0.5</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>2.0.5</version>
</dependency>
<!-- OpenCSV -->
<dependency>
<groupId>com.opencsv</groupId>
<artifactId>opencsv</artifactId>
<version>5.7.1</version>
</dependency>
<!-- Apache POI -->
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
<version>5.2.2</version>
</dependency>
<!-- Log4j -->
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>2.14.1</version>
</dependency>
<!-- maven-invoker -->
<dependency>
<groupId>org.apache.maven.shared</groupId>
<artifactId>maven-invoker</artifactId>
<version>3.2.0</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>2.14.1</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.22</version>
<scope>provided</scope>
</dependency>
</dependencies>
</project>
型
Config-dev.properties内容
Backup-File Location
relativeDownloadLocation = Downloads/
File-Location for Back-End Service
absoluteDownloadLocation = ../backend-service/src/main/resources/report/
configFilePath
configFilePath = src/main/resources/config-dev.properties
Project Directory
project.directory=.
Project Resource Directory
resource.directory=src/main/resources/
Maven Home - change according to environment
maven.home=/rezsystem/apache-maven-3.9.2
Availability Report properties
availabilityReportFileName=Availability Report.csv
comprehensive report properties
comprehensiveReportFileName=Comprehensive Sales Report Detailed.csv
型
我的问题是,当我尝试Docker化这个应用程序时,我遇到了一些问题。我试图更新Docker文件以处理本地开发场景。
Docker文件
# Use the official Maven image as a build stage
FROM maven:3.8-openjdk-17 AS builder
# Set the working directory
WORKDIR /app
# Copy the source code to the working directory
COPY . .
# Build the Maven project and create the JAR file
ARG MAVEN_OPTS="-Pdev -DactiveProfile=dev -DconfigFile=config-dev.properties"
RUN mvn clean install $MAVEN_OPTS
# Use the official OpenJDK 17 image as the final image
FROM openjdk:17
# Set the working directory inside the container
WORKDIR /app
# Copy the JAR file from the builder stage
COPY --from=builder /app/target/report-automation.jar /app/report-automation.jar
# Copy the appropriate config file based on Maven profile
COPY src/main/resources/config-dev.properties /app/src/main/resources/config-dev.properties
# Copy the Configuration.xlsm file from the source to the working directory in the container
COPY src/main/resources/Configuration.xlsm /app/src/main/resources/Configuration.xlsm
# Expose the port (if your application listens on a specific port)
# EXPOSE 8080
# Set the entry point for the container (replace with your main class)
ENTRYPOINT ["java", "-jar", "report-automation.jar"]
型
使用Docker build命令docker build --build-arg MAVEN_OPTS="-Pdev -DactiveProfile=dev -DactiveFile =config-dev.properties”-t selenium-app。
遇到错误
docker build --build-arg MAVEN_OPTS="-Pdev -DactiveProfile=dev -DconfigFile=config-dev.properties" -t selenium-app .
[+] Building 3.7s (10/14)
=> [internal] load build definition from Dockerfile 0.0s
=> => transferring dockerfile: 1.19kB 0.0s
=> [internal] load .dockerignore 0.0s
=> => transferring context: 2B 0.0s
=> [internal] load metadata for docker.io/library/openjdk:17 2.6s
=> [internal] load metadata for docker.io/library/maven:3.8-openjdk-17 2.6s
=> [internal] load build context 0.1s
=> => transferring context: 33.52kB 0.0s
=> [builder 1/4] FROM docker.io/library/maven:3.8-openjdk-17@sha256:3a9c30b3af6278a8ae0007d3a3bf00fff80ec3ed7ae4eb9bfa1772853101549b 0.0s
=> [stage-1 1/5] FROM docker.io/library/openjdk:17@sha256:528707081fdb9562eb819128a9f85ae7fe000e2fbaeaf9f87662e7b3f38cb7d8 0.0s
=> CACHED [builder 2/4] WORKDIR /app 0.0s
=> [builder 3/4] COPY . . 0.6s
=> ERROR [builder 4/4] RUN mvn clean install -Pdev -DactiveProfile=dev -DconfigFile=config-dev.properties 0.4s
------
> [builder 4/4] RUN mvn clean install -Pdev -DactiveProfile=dev -DconfigFile=config-dev.properties:
#0 0.291 Unrecognized option: -Pdev
#0 0.291 Error: Could not create the Java Virtual Machine.
#0 0.291 Error: A fatal exception has occurred. Program will exit.
------
ERROR: failed to solve: executor failed running [/bin/sh -c mvn clean install $MAVEN_OPTS]: exit code: 1
型
如何解决在尝试Docker化应用程序时遇到的这些问题?Docker文件中是否需要任何更新?
2条答案
按热度按时间uidvcgyl1#
您可以从shell表单切换到exec表单来实现此功能:
字符串
kpbpu0082#
感谢所有的回应.我在本地检查了它,这个命令工作,但在容器中,它似乎失败.请检查特殊字符的情况,但我无法验证任何这样的字符.
我也尝试了上述方法,但不幸的是,它对我不起作用。
尽管如此,我重构了代码并删除了**-Pdev**选项的依赖项。一旦我这样做了,现有的错误就得到了解决。
重构代码中使用的新命令
mvn clean install -DactiveProfile=dev -DactiveFile = dactive-dev.properties
docker build --build-arg MAVEN_OPTS="-DactiveProfile=dev -DactiveFile =config-dev.properties”-t selenium-app .
使用此更改更新了上述Docker文件
**构建Maven项目并创建MySQL文件 ARG MAVEN_OPTS="-DactiveProfile=dev -DactiveFile = MySQL-dev.properties”RUN mvn clean install $MAVEN_OPTS