Spring AOP配置文件引入 AOPSpringMyeclipseEclipseXML
程序员文章站
2022-03-08 18:43:09
...
使用MyEclipse开发java,我比较喜欢用MyEclispe XML Editor编辑xml文件。曾经用过XmlBuddy(大概是这么个名字吧),感觉他像吹牛~ ~字体很小,提示功能也不十分突出,比MyEclispe XML Editor强的地方是可以自动缩进。所以还是用MyEclispe XML Editor吧。
利用MyEclipse添加Spring2.5的支持库开发AOP的话,虽然引入了AOP的支持包,但是配置文件却不支持AOP配置。Eclipse自动生成的ApplicationContext.xml文件命名空间如下:
为了支持AOP,需要加入spring-aop-2.5.xsd。给文件位于%SPRING_HOME%\dist\resources目录中。这个目录有很多资源文件,根据不同的需要选择添加,我们只需要spring-aop-2.5.xsd。修改后的头部变成了这样:
这样Eclipse就支持AOP配置了。配合代码提示键就可以方便开发了。
利用MyEclipse添加Spring2.5的支持库开发AOP的话,虽然引入了AOP的支持包,但是配置文件却不支持AOP配置。Eclipse自动生成的ApplicationContext.xml文件命名空间如下:
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd"> </beans>。
为了支持AOP,需要加入spring-aop-2.5.xsd。给文件位于%SPRING_HOME%\dist\resources目录中。这个目录有很多资源文件,根据不同的需要选择添加,我们只需要spring-aop-2.5.xsd。修改后的头部变成了这样:
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd"> </beans>。
这样Eclipse就支持AOP配置了。配合代码提示键就可以方便开发了。
上一篇: 大寒节气是哪一天
推荐阅读
-
Spring框架中引入外部配置文件的属性值
-
SSH与SSM学习之Spring16——Spring中AOP之使用配置文件配置
-
spring学习之六“AOP使用spring静态配置文件的实现”
-
spring学习之七“AOP使用spring静态配置文件(CGLIB)”
-
Spring 使用annotation和xml配置文件实现AOP
-
Spring框架中引入外部配置文件的属性值
-
Spring AOP 之@DeclareParents 引入
-
Spring AOP配置文件引入 AOPSpringMyeclipseEclipseXML
-
Spring AOP配置文件引入 AOPSpringMyeclipseEclipseXML
-
Spring学习 之 AOP (配置文件版)