在spring mvc demo中的build.gradle配置文件中:
compileOnly 'org.projectlombok:lombok:1.18.16'
annotationProcessor 'org.projectlombok:lombok:1.18.16'
testCompileOnly 'org.projectlombok:lombok:1.18.16'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.16'
但是在启动tomcat时报错:
警告: 没有处理程序要使用以下任何注释: org.springframework.context.annotation.Configuration,org.springframework.web.bind.annotation.RequestParam,org.springframework.stereotype.Service,org.springframework.web.bind.annotation.RequestMapping,org.springframework.beans.factory.annotation.Autowired,org.springframework.web.servlet.config.annotation.EnableWebMvc,org.springframework.context.annotation.Bean,org.springframework.stereotype.Controller,javax.annotation.processing.SupportedAnnotationTypes,org.springframework.context.annotation.ComponentScan
错误: 发现警告, 但指定了 -Werror
最终编译失败,网上的解决方案是用-Xlint:-processing沉默警告,但是并没有起作用