1

我正在用 spring config-server 试验一个小项目。配置仓库由受密码保护的 gitlab 维护。当我启动配置服务器项目时,我收到以下警告,也没有读取来自 gitlab repo 的属性。

Invalid cookie header: "Set-Cookie: experimentation_subject_id=ImJiYTI3NmEzLWJmMWsfdfsdefdfiMmJlLTBjMTM1Njk3Mzg1MiI%3D--7a607dacd6c529dba85t5yd8067da9e1298f6ed; domain=.example.com; path=/; expires=Mon, 18 Jun 2040 09:52:48 -0000; secure; HttpOnly". Invalid 'expires' attribute: Mon, 18 Jun 2040 09:52:48 -0000

配置服务器 - application.properties

server.port=8888

spring.cloud.config.server.git.uri=https://gitlab.example.com/example/config-service.git
spring.cloud.config.server.git.username=*******
spring.cloud.config.server.git.password=*******
spring.cloud.config.server.git.skip-ssl-validation=true
spring.cloud.config.server.git.clone-on-start=true

人们提出了类似的问题,在不同的项目中抛出了异常,少数解决方案是升级 apache 客户端 http 客户端版本。但是在检查配置服务器时,我使用的 apache http 客户端已经是 4.5.10 版本了。

这里是否缺少其他配置?请让我知道您的意见。谢谢。

4

1 回答 1

2

我有同样的问题,而我们根本不需要 cookie(无状态客户端)。我不知道您是否是这种情况,但是您可以禁用 Spring 使用的 ApacheHttpClient 的 cookie 管理。disableCookieManagment()在我们这边修复了这个错误。

@Bean
public ApacheHttpClient httpclient() {
    return new ApacheHttpClient(
            org.apache.http.impl.client.HttpClientBuilder
                    .create()
                    .disableCookieManagement()
                    .disableConnectionState()
                    .build());
}
于 2020-12-17T11:41:13.473 回答