问答详情
源自:5-4 Advice应用(上)

我的xsd有问题吗?出错了,是不是我少了什么东西

 schema_reference.4: Failed to read schema document 'http://www/springframework.org/schema/aop/spring-aop.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>.

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

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

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

    xmlns:context="http://www.springframework.org/schema/context"

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

    xsi:schemaLocation="http://www.springframework.org/schema/beans

        http://www.springframework.org/schema/beans/spring-beans.xsd

        http://www/springframework.org/schema/aop

        http://www/springframework.org/schema/aop/spring-aop.xsd">

        <bean id="myAspect" class="com.spring.aop.schema.advice.MyAspect"></bean>

        <bean id="aspectBiz" class="com.spring.aop.schema.advice.biz.AspectBiz"></bean>

        <aop:config>

            <aop:aspect id="myAspectAOP" ref="myAspect">

                 <aop:pointcut id="myPointcut" 

                 expression="execution(* com.spring.aop.schema.advice.biz.*Biz.*(..))"/>

                 <aop:before method="before" pointcut-ref="myPointcut"/>

            </aop:aspect>   

            

        </aop:config>

</beans>


提问者:Heather1 2016-08-14 14:43

个回答

  • 江湖上
    2016-08-19 06:22:55
    已采纳

    如果使用的是Eclipse的话,可以安装一个Spring Tools Suite插件,该插件可以自动的引入需要的命名空间。。。

  • Heather1
    2016-08-14 14:45:42

    sorry,刚发完发现了错误所在,无语了。。。。。。这个在哪里删除的,丢人了。。。