The lombok plugin in IDEA-console reports an error

problem

IDEA控制台报错: Unable to process Jar entry [module-info.class] from Jar [jar:file:/E:/WorkSoft/apache-tomcat-7.0.75/webapps/ROOT/WEB-INF/lib/lombok-1.16.22.jar!/] for annotations

method

If this error is reported in the project, the big reason is that there is a problem with the maven dependency package in IDEA, just change his version. (Reason: the version above lombok 1.16.18 cannot be supported, an error will be reported)

<dependency>    
	<groupId>org.projectlombok</groupId>    
	<artifactId>lombok</artifactId>    
	<version>1.16.10</version> //更改为其他版本即可
</dependency>

Continuously updating...

Guess you like

Origin blog.csdn.net/weixin_44325444/article/details/106323177