使用mp-plus的依赖无法访问org.springframework.boot.autoconfigure.jackson.Jackson2ObjectMapperBuilderCustomizer 错误的类文件: /D:/maven/apache-maven-3.8.6-bin/apache-maven-3.8.6/mvn_resp/org/springframework/boot/spring-boot-autoconfigure/3.1.2/spring-boot-autoconfigure-
时间: 2023-12-18 13:06:02 浏览: 222
引用\[1\]中提到了如何手动排除一些不需要的依赖,并引入其他依赖。如果你使用了mp-plus的依赖,但无法访问org.springframework.boot.autoconfigure.jackson.Jackson2ObjectMapperBuilderCustomizer类文件,可能是因为该类文件在你的项目中无法找到。这可能是由于依赖冲突或版本不兼容导致的。
为了解决这个问题,你可以尝试以下几个步骤:
1. 确保你的项目中已经正确引入了spring-boot-starter-web模块,可以在pom.xml文件中查看是否有以下依赖配置:
```xml
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
```
这个模块提供了许多开箱即用的依赖,包括Jackson相关的依赖。
2. 检查你的mp-plus依赖是否与其他依赖存在冲突。你可以尝试在pom.xml文件中排除一些可能引起冲突的依赖,例如:
```xml
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-boot-starter</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</exclusion>
</exclusions>
</dependency>
```
这样可以排除mp-plus中可能与spring-boot-starter-web冲突的依赖。
3. 确保你的项目中的所有依赖版本兼容。你可以尝试更新mp-plus和其他相关依赖的版本,以确保它们与spring-boot-starter-web的版本兼容。
如果以上步骤都没有解决你的问题,你可能需要进一步检查你的项目配置和依赖关系,或者查看相关的错误日志以获取更多信息。
#### 引用[.reference_title]
- *1* *2* *3* [1.开启Spring Boot](https://blog.csdn.net/MissOfSpring/article/details/100140156)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^insert_down28v1,239^v3^insert_chatgpt"}} ] [.reference_item]
[ .reference_list ]
阅读全文