你的位置:首页 > 软件开发 > Java > Spring Annotation注解进行aop的学习

Spring Annotation注解进行aop的学习

发布时间:2016-08-28 12:00:04
使用Maven管理项目,pom文件为: 1 <project ="http://maven.apache.org/POM/4.0.0" ="http://www.w3.org/2001/ 2 xsi:schemaLocation=&quot ...

使用Maven管理项目,pom文件为:

Spring Annotation注解进行aop的学习Spring Annotation注解进行aop的学习
 1 <project ="http://maven.apache.org/POM/4.0.0" ="http://www.w3.org/2001/ 2   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 3   <modelVersion>4.0.0</modelVersion> 4   <groupId>com.dzg</groupId> 5   <artifactId>spring_study</artifactId> 6   <version>0.0.1-SNAPSHOT</version> 7   <properties> 8     <maven.compiler.source>1.8</maven.compiler.source> 9     <maven.compiler.target>1.8</maven.compiler.target>10     <maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion>11   </properties>12 13   <dependencies>14     <dependency>15       <groupId>org.springframework</groupId>16       <artifactId>spring-context</artifactId>17       <version>4.3.2.RELEASE</version>18     </dependency>19     <!-- https://mvnrepository.com/artifact/junit/junit -->20     <dependency>21       <groupId>junit</groupId>22       <artifactId>junit</artifactId>23       <version>4.12</version>24     </dependency>25     <!-- https://mvnrepository.com/artifact/org.aspectj/aspectjrt -->26     <dependency>27       <groupId>org.aspectj</groupId>28       <artifactId>aspectjrt</artifactId>29       <version>1.8.9</version>30     </dependency>31     <!-- https://mvnrepository.com/artifact/org.aspectj/aspectjweaver -->32     <dependency>33       <groupId>org.aspectj</groupId>34       <artifactId>aspectjweaver</artifactId>35       <version>1.8.9</version>36     </dependency>37     <!-- https://mvnrepository.com/artifact/aopalliance/aopalliance -->38     <dependency>39       <groupId>aopalliance</groupId>40       <artifactId>aopalliance</artifactId>41       <version>1.0</version>42     </dependency>43 44   </dependencies>45 </project>

原标题:Spring Annotation注解进行aop的学习

关键词:Spring

*特别声明:以上内容来自于网络收集,著作权属原作者所有,如有侵权,请联系我们: admin#shaoqun.com (#换成@)。

可能感兴趣文章

我的浏览记录