javagrpcgrpc-java

I use gRPC to generate java code '@javax.annotation.Generated' and it reports 'Error:(20,18) java: cannot find symbol'. How to solve it?


I use gRPC to generate code '@javax.annotation.Generated' like below picture.

![enter image description here

Then I use maven to build the project, and it reports 'Error:(20,18) java: cannot find symbol' like below picture.

enter image description here

How to solve it?


Solution

  • 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>