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

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

Spring框架如何實現(xiàn)AOP添加日志記錄功能

小編給大家分享一下Spring框架如何實現(xiàn)AOP添加日志記錄功能,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

創(chuàng)新互聯(lián)堅持“要么做到,要么別承諾”的工作理念,服務(wù)領(lǐng)域包括:成都網(wǎng)站制作、網(wǎng)站建設(shè)、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣等服務(wù),滿足客戶于互聯(lián)網(wǎng)時代的張家港網(wǎng)站設(shè)計、移動媒體設(shè)計的需求,幫助企業(yè)找到有效的互聯(lián)網(wǎng)解決方案。努力成為您成熟可靠的網(wǎng)絡(luò)建設(shè)合作伙伴!

需求,在調(diào)用業(yè)務(wù)方法的時候,在被調(diào)用的業(yè)務(wù)方法的前面和后面添加上日志記錄功能

整體架構(gòu):

Spring框架如何實現(xiàn)AOP添加日志記錄功能

日志處理類:

package aop;

import java.util.Arrays;

import org.apache.log4j.Logger;
import org.aspectj.lang.JoinPoint;

//日志處理類 增強(qiáng)處理類-日志
public class UserServiceLogger {
  private Logger logger = Logger.getLogger(UserServiceLogger.class);

  // 前置增強(qiáng)
  public void before(JoinPoint joinPoint) {
    logger.info("調(diào)用" + joinPoint.getTarget() + "的"
        + joinPoint.getSignature() + "方法,方法參數(shù)是:"
        + Arrays.toString(joinPoint.getArgs()));
  }

  // 后置增強(qiáng)
  public void afterReturning(JoinPoint joinPoint,Object result) {
    logger.info("調(diào)用" + joinPoint.getTarget() + "的"
        + joinPoint.getSignature() + "方法,方法的返回值是:"
        +result);
  }
}
下面是一個三層架構(gòu)模式: 
package dao;

import entity.User;

/**
 * 增加DAO接口,定義了所需的持久化方法
 */
public interface UserDao {
  public void save(User user);
}
package dao.impl;

import dao.UserDao;
import entity.User;

/**
 * 用戶DAO類,實現(xiàn)IDao接口,負(fù)責(zé)User類的持久化操作
 */
public class UserDaoImpl implements UserDao {

  public void save(User user) {
    // 這里并未實現(xiàn)完整的數(shù)據(jù)庫操作,僅為說明問題
    System.out.println("保存用戶信息到數(shù)據(jù)庫");
  }
}
package entity;

/**
 * 用戶實體類
 */
public class User implements java.io.Serializable {
  private Integer id; // 用戶ID
  private String username; // 用戶名
  private String password; // 密碼
  private String email; // 電子郵件

  // getter & setter
  public Integer getId() {
    return id;
  }

  public void setId(Integer id) {
    this.id = id;
  }

  public String getUsername() {
    return username;
  }

  public void setUsername(String username) {
    this.username = username;
  }

  public String getPassword() {
    return password;
  }

  public void setPassword(String password) {
    this.password = password;
  }

  public String getEmail() {
    return email;
  }

  public void setEmail(String email) {
    this.email = email;
  }

}
package service;

import entity.User;

/**
 * 用戶業(yè)務(wù)接口,定義了所需的業(yè)務(wù)方法
 */
public interface UserService {
  public void addNewUser(User user);
}
package service.impl;

import service.UserService;
import dao.UserDao;
import entity.User;

/**
 * 用戶業(yè)務(wù)類,實現(xiàn)對User功能的業(yè)務(wù)管理
 */
public class UserServiceImpl implements UserService {

  // 聲明接口類型的引用,和具體實現(xiàn)類解耦合
  private UserDao dao;

  // dao 屬性的setter訪問器,會被Spring調(diào)用,實現(xiàn)設(shè)值注入
  public void setDao(UserDao dao) {
    this.dao = dao;
  }

  public void addNewUser(User user) {
    // 調(diào)用用戶DAO的方法保存用戶信息
    dao.save(user);
  }
}
編寫單元測試方法:
package test;

import org.junit.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

import service.UserService;
import service.impl.UserServiceImpl;

import entity.User;


public class AopTest {

  @Test
  public void aopTest() {
    ApplicationContext ctx = new ClassPathXmlApplicationContext("applicationContext.xml");
    UserService service = (UserService) ctx.getBean("service");
    
    User user = new User();
    user.setId(1);
    user.setUsername("test");
    user.setPassword("123456");
    user.setEmail("test@xxx.com");

    service.addNewUser(user);
  }

}

applicationContext.xml核心配置文件:



  
  
    
  
  
  
  
  
    
    
    
    
      
      
      
      
      
    
  

運(yùn)行結(jié)果:

12-29 15:13:06[INFO]org.springframework.context.support.ClassPathXmlApplicationContext
 -Refreshing org.springframework.context.support.ClassPathXmlApplicationContext@2db0f6b2: startup date [Sun Dec 29 15:13:06 CST 2019]; root of context hierarchy
12-29 15:13:06[INFO]org.springframework.beans.factory.xml.XmlBeanDefinitionReader
 -Loading XML bean definitions from class path resource [applicationContext.xml]
12-29 15:13:06[INFO]org.springframework.beans.factory.support.DefaultListableBeanFactory
 -Pre-instantiating singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@3701eaf6: defining beans [userDao,service,theLogger,org.springframework.aop.config.internalAutoProxyCreator,pointcut,org.springframework.aop.aspectj.AspectJPointcutAdvisor#0,org.springframework.aop.aspectj.AspectJPointcutAdvisor#1]; root of factory hierarchy
12-29 15:13:06[INFO]aop.UserServiceLogger
 -調(diào)用service.impl.UserServiceImpl@3c130745的void service.UserService.addNewUser(User)方法,方法參數(shù)是:[entity.User@2e4b8173]
保存用戶信息到數(shù)據(jù)庫
12-29 15:13:06[INFO]aop.UserServiceLogger
 -調(diào)用service.impl.UserServiceImpl@3c130745的void service.UserService.addNewUser(User)方法,方法的返回值是:null

以上是“Spring框架如何實現(xiàn)AOP添加日志記錄功能”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!


文章標(biāo)題:Spring框架如何實現(xiàn)AOP添加日志記錄功能
本文鏈接:http://weahome.cn/article/jdioip.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部