91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

springboot2.0中怎么通過自定義注解獲取方法返回值

發布時間:2021-06-21 15:14:40 來源:億速云 閱讀:1407 作者:Leah 欄目:大數據

這篇文章將為大家詳細講解有關springboot2.0中怎么通過自定義注解獲取方法返回值,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。

springboot2.0 自定義注解通過類或者方法切面并且獲取方法的返回值

新增一個自定義注解

package com.example.demo.annotation;

import java.lang.annotation.ElementType;
import java.lang.annotation.Target;

@Target({ElementType.METHOD,ElementType.FIELD,ElementType.TYPE})
public @interface TestA {
}

新增一個切面,

package com.example.demo.Aspect;

import lombok.extern.slf4j.Slf4j;
import org.aspectj.lang.JoinPoint;
import org.aspectj.lang.annotation.After;
import org.aspectj.lang.annotation.AfterReturning;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Pointcut;
import org.springframework.stereotype.Component;

import javax.servlet.http.HttpServletRequest;

/**
 * @auth: xinhui
 * @date:
 **/
@Slf4j
@Aspect
@Component
public class DemoAspect {


    @Pointcut("@within(com.example.demo.annotation.TestA)")//注解在類上的用
  //@Pointcut("@annotation(com.example.demo.annotation.TestA)")//注解在方法上
    public void addAdvice(){}

    @AfterReturning(returning = "rvl",pointcut="@within(com.example.demo.annotation.TestA)" )//注解在類上面
//@AfterReturning(returning = "rvl",pointcut="@within(com.example.demo.annotation.TestA)" )//注解在方法上
    public void afterReturn(JoinPoint joinPoint,Object rvl) throws ClassNotFoundException {
        Object[] args = joinPoint.getArgs();//參數
        log.info("--------args:{}",args.length);
        log.info("============打印日志開始============");
        log.info("target:{}",joinPoint.getTarget().getClass());
        for(Object o:args) {
            log.info("參數:{}",o);
        }
        log.info("返回參數:{}",rvl);
        log.info("kind:{}",joinPoint.getKind());
        String classType = joinPoint.getTarget().getClass().getName();
        Class<?> clazz = Class.forName(classType);
        String clazzName = clazz.getName();
        String methodName = joinPoint.getSignature().getName(); //獲取方法名稱
        log.info("============打印日志結束============");
    }
}

新增一個service類

package com.example.demo.test;

import com.example.demo.annotation.TestA;
import com.example.demo.model.SayEntity;
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Service;

/**
 * @auth: xinhui
 * @date: 2019/10/8 8:52 下午
 **/

@Service("demoTest")
@Slf4j
@TestA
public class DemoTest {
//    @TestA
    public SayEntity say(String saystr,String origin) {
log.info("say is start");
        SayEntity say = new SayEntity(saystr, origin);
        return say;
    }
}

新增controller信息

package com.example.demo;

import com.example.demo.test.DemoTest;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.EnableAspectJAutoProxy;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;

import javax.annotation.Resource;


@SpringBootApplication
@RestController
@EnableAspectJAutoProxy
@ComponentScan(basePackages = {"com.example.demo"})
public class DemoApplication {

    public static void main(String[] args) {
        SpringApplication.run(DemoApplication.class, args);
    }

    @Autowired
    DemoTest demoTest;

    @RequestMapping(value = "/demo/aop",method = RequestMethod.GET)
    public Object mapping(){
        String say="say hello";String origin="origin";
        return demoTest.say(say,origin);
    }
}

打印日志的信息

2019-10-09 11:41:42.829  INFO 2264 --- [  restartedMain] o.s.b.w.embedded.tomcat.TomcatWebServer  : Tomcat started on port(s): 8080 (http) with context path ''
2019-10-09 11:41:42.832  INFO 2264 --- [  restartedMain] com.example.demo.DemoApplication         : Started DemoApplication in 2.331 seconds (JVM running for 3.133)
2019-10-09 11:41:48.810  INFO 2264 --- [nio-8080-exec-1] o.a.c.c.C.[Tomcat].[localhost].[/]       : Initializing Spring DispatcherServlet 'dispatcherServlet'
2019-10-09 11:41:48.810  INFO 2264 --- [nio-8080-exec-1] o.s.web.servlet.DispatcherServlet        : Initializing Servlet 'dispatcherServlet'
2019-10-09 11:41:48.819  INFO 2264 --- [nio-8080-exec-1] o.s.web.servlet.DispatcherServlet        : Completed initialization in 9 ms
2019-10-09 11:41:48.856  INFO 2264 --- [nio-8080-exec-1] com.example.demo.test.DemoTest           : say is start
2019-10-09 11:41:48.858  INFO 2264 --- [nio-8080-exec-1] com.example.demo.Aspect.DemoAspect       : --------args:2
2019-10-09 11:41:48.859  INFO 2264 --- [nio-8080-exec-1] com.example.demo.Aspect.DemoAspect       : ============打印日志開始============
2019-10-09 11:41:48.859  INFO 2264 --- [nio-8080-exec-1] com.example.demo.Aspect.DemoAspect       : target:class com.example.demo.test.DemoTest
2019-10-09 11:41:48.859  INFO 2264 --- [nio-8080-exec-1] com.example.demo.Aspect.DemoAspect       : 參數:say hello
2019-10-09 11:41:48.859  INFO 2264 --- [nio-8080-exec-1] com.example.demo.Aspect.DemoAspect       : 參數:origin
2019-10-09 11:41:48.860  INFO 2264 --- [nio-8080-exec-1] com.example.demo.Aspect.DemoAspect       : 返回參數:SayEntity(say=say hello, eat=origin)
2019-10-09 11:41:48.860  INFO 2264 --- [nio-8080-exec-1] com.example.demo.Aspect.DemoAspect       : kind:method-execution
2019-10-09 11:41:48.861  INFO 2264 --- [nio-8080-exec-1] com.example.demo.Aspect.DemoAspect       : ============打印日志結束============

關于springboot2.0中怎么通過自定義注解獲取方法返回值就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

江北区| 辛集市| 贵溪市| 长白| 宜兰县| 江北区| 同江市| 靖宇县| 密云县| 武隆县| 明光市| 广元市| 衡水市| 苍山县| 南溪县| 托克托县| 嘉鱼县| 贵定县| 龙胜| 福鼎市| 清远市| 廊坊市| 吉林省| 揭阳市| 镇宁| 新营市| 赫章县| 滦南县| 通城县| 淮北市| 奉新县| 密山市| 永济市| 天津市| 正宁县| 石门县| 通化县| 贵定县| 营口市| 理塘县| 根河市|