1.配置好ssm框架後,spring-aop的所需要的額外jar包
2.增添乙個spring-aop.xml配置檔案
<?xml version="1.0" encoding="utf-8"?>
3.配置的方式
4.使用半自動註解(註解切面)
該配置需要在攔截的類裡新增註解@component("別名對應printtimehandler")
5.使用完全註解方式(僅在aop.xml配置檔案中配置開啟開啟aop註解方式)
@aspect標註切面類(需要的攔截等功能。。)
@component(表明將此類交給spring,)
(1)方式一(表明切點以及切入的時機)
@aspect
@component
public class sings
}@before(value="execution(* com.ssm.servicesimp.sayhelloserviceipm.*(..))")(表明切點以及切入的時機)
(2)方式二
@aspect
@component
public class printtimehandler
@pointcut(value="execution(* com.ssm.servicesimp.sayhelloserviceipm.*(..))")
public void ass(){};
@after("ass()")
public void saywords(){
system.out.println("唱一首歌:最美的太陽");
如果執行過程中出現spring aop : error at ::0 can't find referenced pointcut sleepponit的錯誤,那麼很可能是spring的包的版本問題,
資料整理 檢視硬體配置方法
1 2 3 4 5 6 7 主機板 dmidecode s system product name cpu dmidecode s processor version 記憶體 dmidecode t memory grepsize 硬碟 smartctl i dev sda 檢視物理cpu個數gre...
使用Winhex檢視U盤資料
檔案系統是一種儲存和組織資料的方法,它使得對資料的訪問和查詢變得容易 1 凡是要接入計算機系統的儲存裝置都需要有檔案系統的支援,否則計算機將無法識別裝置中的資料。本文以u盤為例,在windows7系統上使用winhex工具檢視u盤的二進位制資料,初步的認識作業系統檔案和u盤資料的對應關係。winhe...
使用adb shell命令檢視資料庫的資料
1,進入到控制台中,輸入adb shell,進入到命令模式的環境中 2,輸入 cd data data 3,選擇你所在的資料庫檔案,比如我的com.android.homework,輸入命令 cd com.android.homework 4,可以使用ls l 命令檢視當前目錄中的檔案 5,輸入 c...