gpt4 book ai didi

jenkins - System.setProperty ("sun.net.http.allowRestrictedHeaders", "true") 在 Jenkins 中不起作用

转载 作者:行者123 更新时间:2023-12-04 20:37:52 26 4
gpt4 key购买 nike

我试图在 http 请求 header 中发送原始 header ,但是当我获取它的值时,我得到的是 null 而不是我在原始 header 中设置的 url。

此外,我还使用以下命令启用了受限制的 header 作为 jenkins 作业中请求 header 的一部分发送

System.setProperty("sun.net.http.allowRestrictedHeaders", "true")

但似乎这个命令不起作用。

最佳答案

我遇到了同样的问题,对我有用的是在pom.xml 的surefire-plugin 配置中设置系统参数。 :

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.17</version>
<configuration>
<systemPropertyVariables>
<sun.net.http.allowRestrictedHeaders>true</sun.net.http.allowRestrictedHeaders>
</systemPropertyVariables>
</configuration>
</plugin>
</plugins>
</build>

关于jenkins - System.setProperty ("sun.net.http.allowRestrictedHeaders", "true") 在 Jenkins 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32137121/

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