maven打包报错: 程序包net.bytebuddy.asm.Advice不存在

解决办法:
在pom文件中添加 jar包

  <dependency>
      <groupId>net.bytebuddy</groupId>
      <artifactId>byte-buddy-agent</artifactId>
      <version>1.4.32</version>
  </dependency>

  <!-- https://mvnrepository.com/artifact/net.bytebuddy/byte-buddy -->
  <dependency>
     <groupId>net.bytebuddy</groupId>
     <artifactId>byte-buddy</artifactId>
     <version>1.8.12</version>
  </dependency>

猜你喜欢

转载自blog.csdn.net/wsjzzcbq/article/details/81487816
今日推荐