在spring配置文件中要配置aop的时候,“<”号打上后没有出现aop标签

gxiaoqiang1987 2008-11-26 12:01:47
在spring配置文件中要配置aop的时候,“<”号打上后没有出现aop标签

我只加入了
* SPRING_HOME/dist/spring.jar
* SPRING_HOME/lib/jakarta-commons/commons-logging.jar
* SPRING_HOME/lib/log4j/log4j-1.2.14.jar
* SPRING_HOME/lib/aspectj/*.jar
这些jar,是不是还需要别的jar
...全文
1069 5 打赏 收藏 转发到动态 举报
写回复
用AI写文章
5 条回复
切换为时间正序
请发表友善的回复…
发表回复
hfliyy 2009-07-31
  • 打赏
  • 举报
回复
[Quote=引用 1 楼 zidasine 的回复:]
XML code<beansxmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.0.xsd">
或者XML code<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN"
"http://www.springframework.org/dtd/spring-beans.dtd">
有吗
[/Quote]
这个有的,谢谢你了。
Landor2004 2008-11-26
  • 打赏
  • 举报
回复
看xml中的schema是否引入
最重要的是http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd是否在里面,没有就加上

请不要拷贝和你用的spring.jar版本不同的applicationContext.xml
zou_wei_forever 2008-11-26
  • 打赏
  • 举报
回复


上面是配置bean标签的,如果配置aop标签,按照下面:
跟jar包没有多大关系,你要在myeclipse中配置一下:
以myeclipse5.5为例:
进入:window -> Preference... -> MyEclipse -> Files and Editors -> XML ->XML Catalog
右侧选中“User Specified Entries”,点击“Add...”按钮,
Key Type选择URI
location项中右侧有个下拉箭头,点击选择File System...再选择SPRING_HOME\dist\resources\spring-aop-2.0.xsd文件,
选择后再将Key Type改为Schema Location点击ok后重新打开xml文件就有提示了
zou_wei_forever 2008-11-26
  • 打赏
  • 举报
回复
跟jar包没有多大关系,你要在myeclipse中配置一下:
以myeclipse5.5为例:
进入:window -> Preference... -> MyEclipse -> Files and Editors -> XML ->XML Catalog
右侧选中“User Specified Entries”,点击“Add...”按钮,
Key Type选择URI
location项中右侧有个下拉箭头,点击选择File System...再选择SPRING_HOME\dist\resources\spring-beans-2.0.xsd文件,
选择后再将Key Type改为Schema Location点击ok后重新打开xml文件就有提示了
zidasine 2008-11-26
  • 打赏
  • 举报
回复
<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"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.0.xsd">

或者
<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN"
"http://www.springframework.org/dtd/spring-beans.dtd">

有吗
第1章:对Spring框架进行宏观性的概述,力图使读者建立起对Spring整体性的认识。   第2章:通过一个简单的例子展现开发Spring Web应用的整体过程,通过这个实例,读者可以快速跨入Spring Web应用的世界。   第3章:讲解Spring IoC容器的知识,通过具体的实例详细地讲解IoC概念。同时,对Spring框架的三个最重要的框架级接口进行了剖析,并对Bean的生命周期进行讲解。   第4章:讲解如何在Spring配置文件中使用Spring 3.0的Schema格式配置Bean的内容,并对各个配置项的意义进行了深入的说明。   第5章:对Spring容器进行解构,从内部探究Spring容器的体系结构和运行流程。此外,我们还将对Spring容器一些高级主题进行深入的阐述。   第6章:我们从Spring AOP的底层实现技术入手,一步步深入到Spring AOP的内核中,分析它的底层结构和具体实现。   第7章:对如何使用基于AspectJ配置AOP的知识进行了深入的分析,这包括使用XML Schema配置文件、使用注解进行配置等内容。   第8章:介绍了Spring所提供的DAO封装层,这包括Spring DAO的异常体系、数据访问模板等内容。   第9章:介绍了Spring事务管理的工作机制,通过XML、注解等方式进行事务管理配置,同时还讲解了JTA事务配置知识。   第10章:对实际应用中Spring事务管理各种疑难问题进行透彻的剖析,让读者对Spring事务管理不再有云遮雾罩的感觉。   第11章:讲解了如何使用Spring JDBC进行数据访问操作,我们还重点讲述了LOB字段处理、主键产生和获取等难点知识。   第12章:讲解了如何在Spring中集成Hibernate、myBatis等数据访问框架,同时,读者还将学习到ORM框架的混用和DAO层设计的知识。   第13章:本章重点对在Spring中如何使用Quartz进行任务调度进行了讲解,同时还涉及了使用JDK Timer和JDK 5.0执行器的知识。   第14章:介绍Spring 3.0新增的OXM模块,同时对XML技术进行了整体的了解。   第15章:对Spring MVC框架进行详细介绍,对REST风格编程方式进行重点讲解,同时还对Spring 3.0的校验和格式化框架如果和Spring MVC整合进行讲解。   第16章:有别于一般书籍的单元测试内容,本书以当前最具实战的JUnit4+Unitils+ Mockito复合测试框架对如何测试数据库、Web的应用进行了深入的讲解。   第17章:以一个实际的项目为蓝本,带领读者从项目需求分析、项目设计、代码开发、单元测试直到应用部署经历整个实际项目的整体开发过程。

67,537

社区成员

发帖
与我相关
我的任务
社区描述
J2EE只是Java企业应用。我们需要一个跨J2SE/WEB/EJB的微容器,保护我们的业务核心组件(中间件),以延续它的生命力,而不是依赖J2SE/J2EE版本。
社区管理员
  • Java EE
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧