您好,登錄后才能下訂單哦!
項(xiàng)目基本配置參考文章SpringBoot入門(mén)一,使用myEclipse新建一個(gè)SpringBoot項(xiàng)目,使用myEclipse新建一個(gè)SpringBoot項(xiàng)目即可,此示例springboot升級(jí)為2.2.1版本。
1. pom.xml添加aop支持
<!-- 引入aop切面支持 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-aop</artifactId>
</dependency>
2. 創(chuàng)建自定義注解
package com.qfx.common.annotation;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
@Documented
@Retention(RUNTIME)
@Target(METHOD)
public @interface LoginAnno {
}
元注解釋義:
java.lang.annotation提供了四種元注解,專(zhuān)門(mén)注解其他的注解(在自定義注解的時(shí)候,需要使用到元注解):
@Documented –注解是否將包含在JavaDoc中
@Retention –什么時(shí)候使用該注解
@Target –注解用于什么地方
@Inherited – 是否允許子類(lèi)繼承該注解
3. 創(chuàng)建自定義注解解析
package com.qfx.common.annotation;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Before;
import org.aspectj.lang.annotation.Pointcut;
import org.springframework.stereotype.Component;
/**
* <h6>描述:通過(guò)@Aspect注解使該類(lèi)成為切面類(lèi)</h6>
*/
@Aspect
@Component
public class LoginAnnoImpl {
@Pointcut("@annotation(com.qfx.common.annotation.LoginAnno)")
private void cut() {
}
/**
* <h6>功能:前置通知</h6>
*/
@Before("cut()")
public void before() {
System.out.println("自定義注解生效了");
}
}
4. 使用自定義注解
package com.qfx.common.controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import com.qfx.common.annotation.LoginAnno;
@RestController
@RequestMapping("login")
public class LoginController {
@RequestMapping("reg")
public String reg(String userName) {
return "用戶(hù)[" + userName +"]注冊(cè)成功~!";
}
@RequestMapping("login")
@LoginAnno
public String login(String userName) {
return "歡迎您:" + userName;
}
}
4. 完整項(xiàng)目結(jié)構(gòu)
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。