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

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

SpringAOP的用法

本篇內(nèi)容介紹了“Spring AOP的用法”的有關(guān)知識(shí),在實(shí)際案例的操作過(guò)程中,不少人都會(huì)遇到這樣的困境,接下來(lái)就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!

創(chuàng)新互聯(lián)建站長(zhǎng)期為近1000家客戶提供的網(wǎng)站建設(shè)服務(wù),團(tuán)隊(duì)從業(yè)經(jīng)驗(yàn)10年,關(guān)注不同地域、不同群體,并針對(duì)不同對(duì)象提供差異化的產(chǎn)品和服務(wù);打造開(kāi)放共贏平臺(tái),與合作伙伴共同營(yíng)造健康的互聯(lián)網(wǎng)生態(tài)環(huán)境。為天壇街道企業(yè)提供專業(yè)的成都做網(wǎng)站、網(wǎng)站設(shè)計(jì),天壇街道網(wǎng)站改版等技術(shù)服務(wù)。擁有10年豐富建站經(jīng)驗(yàn)和眾多成功案例,為您定制開(kāi)發(fā)。

畢竟是***次使用Spring AOP,按照Reference中的介紹,準(zhǔn)備使用Annotation來(lái)完成對(duì)AOP的配置。來(lái)看一下我做的步驟:

一、需要使用Spring2.0的jar包,現(xiàn)在已經(jīng)發(fā)布正式版的2.0了,可以從http://www.springframework.org/上下載到***的2.0版本。加入到項(xiàng)目的classpath中去。

二、需要在配置文件中啟用新的spring2.0的schema或者是dtd。  

1、在Spring的xml配置文件中加入新的schema:

  1.  xmlns="http://www.springframework.org/schema/beans" 

  2.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 

  3.     xmlns:aop="http://www.springframework.org/schema/aop" 

  4.     xmlns:tx="http://www.springframework.org/schema/tx" 

  5.     xsi:schemaLocation="http://www.springframework.org/schema/beans  http://www.springframework.org/schema/beans/spring-beans-2.0.xsd  

  6.            http://www.springframework.org/schema/aop                           http://www.springframework.org/schema/aop/spring-aop-2.0.xsd  

  7.            http://www.springframework.org/schema/tx                                 http://www.springframework.org/schema/tx/spring-tx-2.0.xsd"  

  8.     default-autowire="byName" default-lazy-init="true"> 

2、“如果使用Java 5的話,推薦使用Spring提供的@AspectJ切面支持,通過(guò)這種方式聲明Spring AOP中使用的切面。 "@AspectJ"使用了Java 5的注解,可以將切面聲明為普通的Java類?!薄猄pring reference

3、為了使用Spring AOP的Annotation,在配置文件中加入。

4、編寫(xiě)切面類:

  1. public class ArticleRemoteAccountsService {  

  2.    

  3.     /** *//**  

  4.      * 在發(fā)帖成功之后,給用戶銀幣賬戶沖值  

  5.      *   

  6.      * @param arg  

  7.      * @throws AccountsException  

  8.      * @throws InstantiationException  

  9.      * @throws IllegalAccessException  

  10.      */  

  11.     @After("execution(* com.company.ArticleManager.saveArticle(..))"  

  12.             + " && args(arg)")  

  13.     public void exSilByPost(Article arg) throws AccountsException,  

  14.             InstantiationException, IllegalAccessException {  

  15.         if (arg.getLastUpdateTime() == null  

  16.                 && arg.getArticleByParentId() == null  

  17.                 && arg.getArticleByRootId() == null) {  

  18.             // TODO 主題帖  

  19.         } else if (arg.getLastUpdateTime() == null  

  20.                 && (arg.getArticleByParentId() != null || arg  

  21.                         .getArticleByRootId() != null)) {  

  22.             // TODO  回帖  

  23.         }  

  24.     }  

  25. }  

這里需要注意的是使用Annotation的Poincut語(yǔ)法,execution(modifiers-pattern? ret-type-pattern declaring-type-pattern? name-pattern(param-pattern) throws-pattern?)這里就不累訴了。同時(shí)要注意的如何得到參數(shù)的問(wèn)題,寫(xiě)法參考如上。

“Spring AOP的用法”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí)可以關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!


本文標(biāo)題:SpringAOP的用法
網(wǎng)址分享:http://weahome.cn/article/posgij.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部