1、自定義註解(annotation)java
自定義註解的做用:在反射中獲取註解,以取得註解修飾的類、方法或屬性的相關解釋。
spring
package me.lichunlong.spring.annotation;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
spring-mvc
//自定義註解相關設置
@Target({ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface LogAnnotation { mvc
//自定義註解的屬性,default是設置默認值
String desc() default "無描述信息";
} this
2、自定義註解的使用spa
package me.lichunlong.spring.service;
import me.lichunlong.spring.annotation.LogAnnotation;
import me.lichunlong.spring.jdbc.JdbcUtil;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
@Service
public class UserService {
//與其它註解同樣的使用
@LogAnnotation(desc="this is UserService")
public void add() {
System.out.println("UserService add...");
}
}.net
3、AOP中獲取註解
代理
// 環繞通知:相似與動態代理的全過程
// 攜帶參數ProceedingJoinPoint,且必須有返回值,即目標方法的返回
@Around(value = "execution(* me.lichunlong.spring.service.*.*(..)) && @annotation(log)")
public Object aroundMethod(ProceedingJoinPoint pjd, LogAnnotation log) {
Object result = null;
System.out.println(log.desc());
try {
System.out.println("前置通知");
result = pjd.proceed();
System.out.println("後置通知");
} catch (Throwable e) {
System.out.println("異常通知");
}
System.out.println("返回通知");
return result;
}
code
4、配置掃描aoporm
<aop:aspectj-autoproxy proxy-target-class="true"/>
5、解決在Controller中註解不生效
通常aop掃描是配置到ApplicationContext.xml,嘿嘿,問題就在這!Spring MVC加載的WebApplicationContext而不是ApplicationContext,因此應該把schema和加載加到 spring-mvc.xml,而後?一切正常。