`
小强HelloWorld
  • 浏览: 5245 次
  • 性别: Icon_minigender_1
  • 来自: 厦门
最近访客 更多访客>>
文章分类
社区版块
存档分类
最新评论

Spring学习----------AOP以及Spring配置文件详解

 
阅读更多

之前有写了Spring的一个特性IOC,现在在来写Spring的另一个特性AOP,AOP中个一些概念,看了网络上的讲解AOP的文章,讲的都很正确,可是不是很好理解,我在来写一点,可能不太精确,但理解容易点。AOP是用动态代理(装饰模式),解决横切行问题:下面看下AOP中概念.











Aspect:是一个横切行问题的一个抽象。他不是具体实现,只是一个横切面。


Adivce:是对横切行问题的一个具体实现,比如我们对Service前进行安全检查,那么Advice可能就是一个安全检查的一个具体的类,其中实现了安全检查的一个具体的方法。


JoinPoint:现在我们已经知道了横切性问题了(Aspect),和横切行问题的具体实现(Adivce)那个,我们在哪植入Advice了,我们在JoinPoint标出,比如Service中的addUser方法。


PointCut:ok,现在有个JoinPoint,那么理解PointCut就容易了,PointCut就是对JoinPoint集合的一个选择规则,比如add*表示,所有的add开头的方法都是JoinPoint


Weaving:是一个过程,是将Adivce植入到JoinPoint的一个动作。







<!-- 下面是网友总结的-->

  • 目标对象(Target Object):被一个或者多个切面所通知的对象。例如,AServcieImpl和BServiceImpl,当然在实际运行时,Spring AOP采用代理实现,实际AOP操作的是TargetObject的代理对象。
  • AOP代理(AOP Proxy)在Spring AOP中有两种代理方式,JDK动态代理和CGLIB代理。默认情况下,TargetObject实现了接口时,则采用JDK动态代理,例如,AServiceImpl;反之,采用CGLIB代理,例如,BServiceImpl。强制使用CGLIB代理需要将<aop:config>proxy-target-class 属性设为true





下面我们看下Spring配置文件的具体实现

<?xml version="1.0" encoding="UTF-8"?>
<beans
	xmlns="http://www.springframework.org/schema/beans"
	xmlns:aop="http://www.springframework.org/schema/aop"
    xmlns:tx="http://www.springframework.org/schema/tx"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xmlns:p="http://www.springframework.org/schema/p"
	xsi:schemaLocation="http://www.springframework.org/schema/beans 
	http://www.springframework.org/schema/beans/spring-beans-3.0.xsd"
	 >

    <!-- 配置 dataSource -->
	<bean id="dataSource"
	      class="org.apache.commons.dbcp.BasicDataSource">
		<property name="driverClassName"
			value="com.mysql.jdbc.Driver">
		</property>
		<property name="url"
			value="jdbc:mysql://localhost:3306/blog_ssh">
		</property>
		<property name="username" value="root"></property>
		<property name="password" value="43995201"></property>
	</bean>
	
	<!-- 配置sessionFactory -->
	<bean id="sessionFactory"
		class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
		<property name="dataSource">
			<ref bean="dataSource" />
		</property>
		<property name="mappingResources">
		   <list>
		      <value>com.lee.pojo.Article.hbm.xml</value>
		      <value>com.lee.pojo.ArticleType.hbm.xml</value>
		      <value>com.lee.pojo.Consumer.hbm.xml</value>
		      <value>com.lee.pojo.Discuss.hbm.xml</value>
		      <value>com.lee.pojo.Friend.hbm.xml</value>
		      <value>com.lee.pojo.Photo.hbm.xml</value>
		      <value>com.lee.pojo.Restore.hbm.xml</value>
		      <value>com.lee.pojo.Vote.hbm.xml</value>
		   </list>
		</property>
		<property name="hibernateProperties">
			<props>
				<prop key="hibernate.dialect">
					org.hibernate.dialect.MySQLDialect
				</prop>
				<prop key="hibernate.hbm2ddl.auto">update</prop>
				<prop key="hibernate.show_sql">true</prop>
			</props>
		</property>
	</bean>
	
	<!-- 配置事务管理器 -->
	<bean id="tansacationManger" class="org.springframework.orm.hibernate3.HibernateTransactionManager">
	     <property name="sessionFactory" ref="sessionFactory"></property>
	</bean>
	
	<!-- 配置事务的传播特行(JoinPoint) -->
	<tx:advice id="txAdvice" transaction-manager="tansacationManger"> 
      <tx:attributes>
        <tx:method name="get*" read-only="true" propagation="NOT_SUPPORTED"/>
        <tx:method name="*" read-only="true"/> 
      </tx:attributes> 
    </tx:advice>  
	
	<!-- 配置那些类参与事务(PointCut) -->
	<aop:config> 
       <aop:pointcut id="transactionPointcut" expression="execution(* com.lee.service.*.*(..))"/> 
       <aop:advisor advice-ref="txAdvice" pointcut-ref="transactionPointcut"/> 
    </aop:config> 
</beans>

<!--这个链接是Spring配置的 5种方法,楼主顶http://www.blogjava.net/robbie/archive/2009/04/05/264003.html-->


分享到:
评论

相关推荐

    开源框架spring详解-----AOP的深刻理解

    标题 "开源框架spring详解-----AOP的深刻理解" 指向的是对Spring框架中核心概念之一的面向切面编程(Aspect Oriented Programming, AOP)的深入探讨。AOP是Spring用来解决横切关注点问题的一种编程模式,它允许...

    Spring之AOP配置文件详解

    ### Spring之AOP配置文件详解 #### 一、前言 在Java开发中,Spring框架因其强大的功能和灵活的配置而被广泛应用于企业级应用的开发。其中,面向切面编程(Aspect Oriented Programming,简称AOP)是Spring框架的...

    spring----AOP实现

    Spring AOP实现详解 在Java开发中,Spring框架以其强大的功能和灵活性被广泛使用,而AOP(面向切面编程)则是Spring框架的一个重要特性。AOP为开发者提供了一种处理横切关注点的新方法,使得代码更加模块化,提高了...

    spring2-aop入门实例教程

    - **配置方法**:Spring AOP可以通过XML配置文件、Java配置类以及注解等多种方式进行配置。 - **切入点(Pointcut)**:定义了通知将应用于哪些连接点的规则。 - **增强(Advice)**:在特定连接点执行的代码块,可以是...

    spring入门学习-6、AOP几种配置方式详解.pdf

    这种方式允许开发者在 Spring 的配置文件中直接声明 AOP 的切面、切入点以及通知等元素,而无需编写复杂的 Java 代码。 - **切面声明**:使用 `&lt;aop:aspect&gt;` 元素来定义一个切面。 - **切入点声明**:使用 `&lt;aop:...

    spring-springMVC开发文档和AOP详解

    本压缩包文件主要涵盖了Spring框架的核心部分——Spring MVC和AOP(面向切面编程)的详细知识,对于想要深入理解和运用Spring框架的开发者来说,是一份非常宝贵的资源。 首先,我们来看看《Spring3.20权威开发指南...

    spring-beans-3.0.xsd

    《Spring框架中的beans配置文件详解——以spring-beans-3.0.xsd和3.1.xsd为例》 在Spring框架中,`spring-beans`是核心组件之一,它负责管理对象的生命周期和依赖关系。`spring-beans`的配置文件通常以`.xsd`为后缀...

    官方完整包 spring-framework-5.3.7.RELEASE-dist.zip

    - **spring-5.3.7-schema.zip**:可能包含Spring配置文件的XML模式定义,有助于验证配置文件的正确性。 6. **使用流程**: - 解压压缩包,将所需的jar文件添加到项目类路径。 - 配置Spring的IoC容器,可以使用...

    spring-aop-4.0.1.RELEASE.zip

    《Spring 框架与AOP模块详解》 在IT领域,Spring框架是Java开发中最广泛应用的开源项目之一,尤其在企业级应用中占据主导地位。本次我们将深入探讨Spring框架的核心组件——AOP(面向切面编程)模块,以及如何在...

    spring-context-4.2.xsd.zip

    《Spring框架中的Context模块与XSD配置详解》 在Java企业级开发中,Spring框架扮演着至关重要的角色,尤其在Spring的Context模块中,通过XML Schema(XSD)进行配置,使得应用程序的组件管理和依赖注入变得简洁高效...

    2023版全新SSM框架实战精讲 视频教程 下载下载 因为太大存百度云盘3.zip

    046-spring-aop-aop思维以及aop框架和代理技术的关系.mp4 047-spring-aop-annotation快速实现.mp4 048-spring-aop-获取切点详细信息.mp4 049-spring-aop-切点表达式语法.mp4 050-spring-aop-统一切点管理.mp4 ...

    2023版全新SSM框架实战精讲 视频教程 下载下载 因为太大存百度云盘4.zip

    046-spring-aop-aop思维以及aop框架和代理技术的关系.mp4 047-spring-aop-annotation快速实现.mp4 048-spring-aop-获取切点详细信息.mp4 049-spring-aop-切点表达式语法.mp4 050-spring-aop-统一切点管理.mp4 ...

    2023版全新SSM框架实战精讲 视频教程 下载下载 因为太大存百度云盘2.zip

    046-spring-aop-aop思维以及aop框架和代理技术的关系.mp4 047-spring-aop-annotation快速实现.mp4 048-spring-aop-获取切点详细信息.mp4 049-spring-aop-切点表达式语法.mp4 050-spring-aop-统一切点管理.mp4 ...

    2023版全新SSM框架实战精讲 视频教程 下载下载 因为太大存百度云盘1.zip

    046-spring-aop-aop思维以及aop框架和代理技术的关系.mp4 047-spring-aop-annotation快速实现.mp4 048-spring-aop-获取切点详细信息.mp4 049-spring-aop-切点表达式语法.mp4 050-spring-aop-统一切点管理.mp4 ...

    spring-framework-2.5-rc2-with-dependencies\spring-framework-2.5-rc2\spring-framework-2.5-rc2docs

    《Spring框架2.5 RC2详解》 Spring框架是Java开发中的一个重要组成部分,尤其是在企业级应用领域,它以其模块化、可扩展性以及对J2EE的出色支持而备受推崇。这里我们关注的是Spring框架的2.5 RC2版本,这个版本在...

    springAop的配置实现

    **Spring AOP 配置实现详解** Spring AOP(Aspect Oriented Programming,面向切面编程)是Spring框架的重要组成部分,它允许我们通过分离关注点来简化应用程序的开发。在传统的面向对象编程中,业务逻辑与日志记录...

    mybatis3+spring+springMVC4整合jar包

    【描述】"mybatis3+spring+springMVC4整合jar包,导入即可完美使用"意味着开发者只需要将这些jar文件添加到项目的类路径中,就可以立即开始使用MyBatis、Spring和Spring MVC的功能,无需再进行繁琐的配置和依赖管理...

    spring-framework-5.3.20

    Spring Framework是Spring生态系统的基石,它提供了一个全面的编程和配置模型,旨在简化Java应用程序的开发。5.3.20版本作为稳定版,对之前的版本进行了优化和增强,旨在提高性能、稳定性和安全性。 二、模块详解 ...

    官方原版完整包 spring-framework-5.3.2.RELEASE.zip

    “spring-5.3.2-schema.zip”文件则包含了Spring配置文件的XML Schema定义,这些定义帮助开发者更好地理解和编写符合规范的配置文件,确保了配置的正确性和一致性。 总的来说,Spring Framework 5.3.2.RELEASE是一...

    spring注解aop配置详解

    在传统的AOP配置中,我们需要定义切入点表达式和通知(advice)在XML配置文件中。然而,使用注解可以让这些配置变得更加直观和易于维护。例如,我们可以使用`@Aspect`注解来定义一个切面类,`@Before`、`@After`、`@...

Global site tag (gtag.js) - Google Analytics