IDEA导入Spring源码时出现找不到InstrumentationSavingAgent的错误

时间:2024-03-16 10:10:06

注意事项:

  • spring源码编译是有顺序的,顺序如下:core-oxm-context-beans-aspects-aop

问题:IDEA导入Spring源码时出现找不到InstrumentationSavingAgent的错误

  • 错误如下:
    • Error:(26, 38) java: 找不到符号
      符号: 类 InstrumentationSavingAgent
      位置: 程序包 org.springframework.instrument

方法一(来源于网上,本人测试无效):

  • 解决方法:导入项目时选择 Use local gradle distribution,设置Gradle home:
  • mac 通过brew info gradle查询目录
    IDEA导入Spring源码时出现找不到InstrumentationSavingAgent的错误

方法二

  • spring-context的依赖发现,spring-instrument 在 spring-context 中为 optional 依赖:optional(project(":spring-instrument")),于是在自己的模块中添加spring-instrument依赖。
    IDEA导入Spring源码时出现找不到InstrumentationSavingAgent的错误
  • 方法二讲过测试没有发现问题,感谢(http://cmsblogs.com/?p=11441)提供的思路。