gpt4 book ai didi

java - 如何在 Maven 构建中包含一个随机文件以用于要在 AWS EBS 上部署的 WAR 文件?

转载 作者:行者123 更新时间:2023-11-28 23:13:45 25 4
gpt4 key购买 nike

我找到了这个答案 https://serverfault.com/a/822596/123651

我需要在我的 WAR 中包含一个随机文件 \.ebextensions\nginx\conf.d\elasticbeanstalk\force-https.conf 以部署在 AWS ElasticBeanstalk 控制台上。如何将此文件包含在 mvn package 命令中? ElasticBeanstalk 将如何在 WAR 中读取此文件?

我试着用这个 guide并添加到我的 pom.xml

<build>
...
<resources>
<resource>
<directory>.ebextensions/nginx/conf.d/elasticbeanstalk/</directory>
<includes>
<include>force-https.conf</include>
</includes>
</resource>
</resources>
</build>

然后运行 ​​mvn package -DskipTeststar tvf target\app-0.0.3-SNAPSHOT.war | less 但它把文件放错了地方!

-rw-rw-r--  0 0      0          94 Nov 14 12:40 WEB-INF/classes/force-https.conf

最佳答案

这成功了。仅制作 2 个文件的 ZIP 似乎过于冗长。

pom.xml
        <plugin> <!-- To add .ebextensions/ Nginx config for ElasticBeanstalk -->
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptors>
<descriptor>assembly.xml</descriptor>
</descriptors>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
程序集.xml
<assembly 
xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd">
<id>bin</id>
<baseDirectory>/</baseDirectory>
<formats>
<format>zip</format>
</formats>
<fileSets>
<fileSet>
<directory>${project.build.directory}</directory>
<outputDirectory>/</outputDirectory>
<includes>
<include>*-SNAPSHOT.war</include>
</includes>
</fileSet>
<fileSet>
<directory>${project.basedir}</directory>
<outputDirectory>/.ebextensions/nginx/conf.d/elasticbeanstalk/</outputDirectory>
<includes>
<include>force-https.conf</include>
</includes>
</fileSet>
</fileSets>
</assembly>

配置文件就在项目根目录下。我不知道该把它放在哪里 - 它不是源代码。

force-ssl.conf
if ($http_x_forwarded_proto = 'http') {
return 301 https://$host$request_uri;
}

http://maven.apache.org/plugins/maven-assembly-plugin/assembly.html

关于java - 如何在 Maven 构建中包含一个随机文件以用于要在 AWS EBS 上部署的 WAR 文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53305829/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com