程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> class-Spring配置文件中DOCTYPE與<beans xmlns>沖突問題

class-Spring配置文件中DOCTYPE與<beans xmlns>沖突問題

編輯:編程綜合問答
Spring配置文件中DOCTYPE與<beans xmlns>沖突問題

這是DPCTYPE
<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd">
這是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.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd">

        這是我接下來的通知類

        <bean id="advices" class="advice.Advices"></bean>

<aop:config>
    <!-- 調用日志類 -->
    <aop:aspect id="advice" ref="advices">
        <aop:pointcut expression="execution(* action.*.*(..))" id="log"/>
        <aop:before method="before" pointcut-ref="log"/>
        <aop:after method="afterReturning" pointcut-ref="log"/>
        <aop:after-throwing method="afterThrowing" pointcut-ref="log"/>
    </aop:aspect>

</aop:config>


但是用tomcat運行下來會報這個錯

Exception sending context initialized event to listener instance of class org.springframework.web.context.ContextLoaderListener

org.springframework.beans.factory.parsing.BeanDefinitionParsingException: Configuration problem: Failed to import bean definitions from relative location [xml/spring-advice.xml]
Offending resource: ServletContext resource [/WEB-INF/classes/applicationContext.xml]; nested exception is org.springframework.beans.factory.xml.XmlBeanDefinitionStoreException: Line 11 in XML document from ServletContext resource [/WEB-INF/classes/xml/spring-advice.xml] is invalid; nested exception is org.xml.sax.SAXParseException: Attribute "xmlns" must be declared for element type "beans".
Caused by: org.springframework.beans.factory.xml.XmlBeanDefinitionStoreException: Line 11 in XML document from ServletContext resource [/WEB-INF/classes/xml/spring-advice.xml] is invalid; nested exception is org.xml.sax.SAXParseException: Attribute "xmlns" must be declared for element type "beans".
Caused by: org.xml.sax.SAXParseException: Attribute "xmlns" must be declared for element type "beans".

最佳回答:


xmlns="http://www.springframework.org/schema/beans" 加上這個

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved