真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

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

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

為拜城等地區(qū)用戶提供了全套網(wǎng)頁設(shè)計制作服務(wù),及拜城網(wǎng)站建設(shè)行業(yè)解決方案。主營業(yè)務(wù)為成都做網(wǎng)站、網(wǎng)站建設(shè)、拜城網(wǎng)站設(shè)計,以傳統(tǒng)方式定制建設(shè)網(wǎng)站,并提供域名空間備案等一條龍服務(wù),秉承以專業(yè)、用心的態(tài)度為用戶提供真誠的服務(wù)。我們深信只要達(dá)到每一位用戶的要求,就會得到認(rèn)可,從而選擇與我們長期合作。這樣,我們也可以走得更遠(yuǎn)!

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();//參數(shù)
        log.info("--------args:{}",args.length);
        log.info("============打印日志開始============");
        log.info("target:{}",joinPoint.getTarget().getClass());
        for(Object o:args) {
            log.info("參數(shù):{}",o);
        }
        log.info("返回參數(shù):{}",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("============打印日志結(jié)束============");
    }
}

新增一個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       : 參數(shù):say hello
2019-10-09 11:41:48.859  INFO 2264 --- [nio-8080-exec-1] com.example.demo.Aspect.DemoAspect       : 參數(shù):origin
2019-10-09 11:41:48.860  INFO 2264 --- [nio-8080-exec-1] com.example.demo.Aspect.DemoAspect       : 返回參數(shù):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       : ============打印日志結(jié)束============

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


當(dāng)前題目:springboot2.0中怎么通過自定義注解獲取方法返回值
分享路徑:http://weahome.cn/article/goocpg.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部