mwin007
4/30/2020 - 7:16 PM

Spring Framework Notes

import javax.annotation.* cannot be resolved in Eclipse's Java 10 Compiler

You can try to add annotation dependencies to pom.xml, so that they would be available for Spring:

<dependency>
  <groupId>javax.annotation</groupId>
  <artifactId>javax.annotation-api</artifactId>
  <version>1.3.2</version>
</dependency>