2017-04-02 75 views
0

我目前在春天工作,我對這個框架非常陌生。我已經添加了所有需要的彈簧罐,並編寫了以下spring-dispatcher-servlet.xml文件。spring.xml文件是否需要互聯網連接?

<?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:mvc="http://www.springframework.org/schema/mvc" 
xmlns:tx="http://www.springframework.org/schema/tx" 
xmlns:context="http://www.springframework.org/schema/context" 
xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.1.xsd 
        http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.1.xsd  
        http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd 
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd"> 

    <context:component-scan base-package="com.quiz_mcq.controller, com.quiz_mcq.service, com.quiz_mcq.dao"/> 
    <bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver"> 
     <property name="prefix" value="/" /> 
     <property name="suffix" value=".jsp" /> 
    </bean> 

</beans> 

我的代碼在互聯網連接時工作正常,但當我沒有連接到互聯網時發生故障。並給出以下錯誤。

第12行來自ServletContext資源的XML文檔[/WEB-INF/spring->dispatcher-servlet.xml]無效;嵌套異常是org.xml.sax.SAXParseException; lineNumber:12; columnNumber:109; cvc-complex-type.2.4.c:匹配通配符是嚴格的,但是對元素'context:component-scan'沒有聲明。

我在做什麼錯在這裏?
任何人都可以告訴我解決方案什麼需要做甚至脫機工程的項目?

+3

[Spring schemaLocation可能在沒有互聯網連接時失敗](http://stackoverflow.com/questions/1729307/spring-schemalocation-fails-when-there-is-no-互聯網連接) – developer

回答

0

爲XSI模式位置放

XSI:=的schemaLocation 「http://www.springframework.org/schema/beans 類路徑:組織/ springframework的/豆/工廠/ XML /彈簧豆-3.0.xsd http://www.springframework.org/schema/context 類路徑:組織/ springframework的/豆/factory/xml/spring-context-3.0.xsd」

在您的案件代碼

需要每次

我提供的模式位置應該工作,因爲XSD是包檢查springframework.com d在彈簧罐裏面

+0

我在模式位置添加了你的代碼,但它仍然給我同樣的錯誤 – Vipul