没有互联网连接时架构不起作用

时间:2017-07-18 10:24:40

标签: spring-mvc xmlschemaset spring-config

架构在互联网连接期间正常工作但在互联网连接关闭时会显示以下警告消息

  

文档中没有引用语法约束(DTD或XML Schema)。

我在spring-dispatcher-servlet.xml中使用了以下模式

<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:context="http://www.springframework.org/schema/context"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mvc="http://www.springframework.org/schema/mvc"
	xsi:schemaLocation="http://www.springframework.org/schema/beans     
        http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
        http://www.springframework.org/schema/context 
        http://www.springframework.org/schema/context/spring-context-4.0.xsd
        http://www.springframework.org/schema/mvc
        http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd">

我该怎么做才能解决这个问题?

1 个答案:

答案 0 :(得分:2)

首先,您使用的是作为公共URL的架构。很明显试图从互联网上下载。
如果您使用相对路径下载模式,它应该工作(但不推荐)

编辑:
经过一些帖子后,我发现了example。希望有所帮助