MDC
usedの以前の実装
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>${spring.version}</version>
</dependency>
現在、使用を計画しています
<dependency>
<groupId>io.spring.platform</groupId>
<artifactId>platform-bom</artifactId>
<version>2.0.1.RELEASE</version>
<type>pom</type>
<scope>import</scope>
</dependency>
しかし、以前は機能していたコード:
private final Map<?, ?> parentContext; // initialized in constructor
MDC.setContextMap(parentContext);
上記の行はエラーを出しています:
The method setContextMap(Map<String,String>) in the type MDC is not applicable for the arguments (Map<capture#5-of ?,capture#6-of ?>)
よろしくお願いします。