我目前正在开发Spring,我对这个框架非常陌生。我添加了所有必需的spring jar并编写了以下spring-dispatcher-servlet.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>
我的代码在有互联网连接时工作正常但在我没有连接到互联网时崩溃。并给出以下错误。
来自ServletContext资源[/WEB-INF/spring->dispatcher-servlet.xml]的XML文档中的第12行无效;嵌套异常是org.xml.sax.SAXParseException; lineNumber:12; columnNumber:109; cvc-complex-type.2.4.c:匹配的通配符是strict,但是没有为元素'context:component-scan'找到声明。
我在这里做错了什么?
可以告诉我解决方案即使离线工作也需要做什么?
答案 0 :(得分:0)
用于xsi架构位置放置
的xsi:的schemaLocation = &#34; http://www.springframework.org/schema/beans 类路径:组织/ springframework的/豆/工厂/ XML /弹簧豆,3.0.xsd http://www.springframework.org/schema/context 类路径:组织/ springframework的/豆类/工厂/ XML /弹簧上下文3.0.xsd&#34;
在您的案例中,每次都需要在springframework.com上查看
我提供的架构位置应该有效,因为xsd打包在这里的spring jar中