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

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

SpringAOP如何在java項目中使用

這篇文章將為大家詳細講解有關(guān)Spring AOP如何在java項目中使用 ,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關(guān)知識有一定的了解。

創(chuàng)新互聯(lián)專業(yè)為企業(yè)提供碧江網(wǎng)站建設(shè)、碧江做網(wǎng)站、碧江網(wǎng)站設(shè)計、碧江網(wǎng)站制作等企業(yè)網(wǎng)站建設(shè)、網(wǎng)頁設(shè)計與制作、碧江企業(yè)網(wǎng)站模板建站服務(wù),十余年碧江做網(wǎng)站經(jīng)驗,不只是建網(wǎng)站,更提供有價值的思路和整體網(wǎng)絡(luò)服務(wù)。

一、什么是AOP

  AOP(Aspect Oriented Programming)面向切面編程不同于OOP(Object Oriented Programming)面向?qū)ο缶幊?,AOP是將程序的運行看成一個流程切面,其中可以在切面中的點嵌入程序。

  舉個例子,有一個People類,也有一個Servant仆人類,在People吃飯之前,Servant會準備飯,在People吃完飯之后,Servant會進行打掃,這就是典型的面向切面編程.

  其流程圖為:

  Spring AOP如何在java項目中使用

二、Spring AOP實現(xiàn):

1、People類:

public class People {

 public void eat() {
 System.out.println(“happyheng開始吃飯啦");
 }

 public void play(){
 
 }
}

Servant類:

@Aspect
public class Servant {

 /**
 * 在吃飯之前
 */
 @Before("execution(** com.happyheng.entity.People.eat(..))")
 public void prepareFood(){
 System.out.println("準備食物");
 }

 /**
 * 在吃飯之后
 */
 @After("execution(** com.happyheng.entity.People.eat(..))")
 public void clean(){
 System.out.println("打掃");
 }

}

其中的 @Before是指執(zhí)行前,@After是指執(zhí)行方法后獲取方法拋出異常后,@AfterReturning是指在執(zhí)行方法后調(diào)用,@AfterThrowing是指方法拋出異常后調(diào)用。

2、在applicationContext.xml中進行配置:

<?xml version="1.0" encoding="UTF-8"?>






3、在main中使用:

 public static void main(String[] args) {
 ApplicationContext ctx = new ClassPathXmlApplicationContext(APPLICATION_XML);
 
 People happyheng = (People)ctx.getBean("happyheng");
 happyheng.eat();
 }

關(guān)于Spring AOP如何在java項目中使用 就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。


分享題目:SpringAOP如何在java項目中使用
鏈接URL:http://weahome.cn/article/ihpidp.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部