spring tool suite新建菜单中有Aspectj project
但是import org.aspectj.lang.annotation.*;会显示the import org.aspectj cannot resolved**
你需要在你的项目中增加对aspectj的依赖
如
<!-- https://mvnrepository.com/artifact/org.aspectj/aspectjweaver -->
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjweaver</artifactId>
<version>1.8.13</version>
</dependency>
http://blog.csdn.net/Sup_Heaven/article/details/6898302?locationNum=7&fps=1