-1

MDCused的先前实现

<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 ?>)

请建议。

4

1 回答 1

0

由于升级,MDC依赖项已升级并且方法签名已更改。所以我基本上改变了变量的实现

private final Map<?, ?> parentContext;

private final Map<String, String> parentContext;

问题解决了。

于 2016-12-09T05:23:34.547 回答