I use gRPC to generate code '@javax.annotation.Generated' like below picture.
Then I use maven to build the project, and it reports 'Error:(20,18) java: cannot find symbol' like below picture.
How to solve it?
you can add javax.annotation-api
dependencies to you maven pom.xml
to resolve the annotation.
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>javax.annotation-api</artifactId>
<version>1.2</version>
</dependency>