没有互联网连接时模式不起作用
schema not works when no internet connection
模式在互联网连接期间工作正常,但当互联网连接关闭时它向我显示以下警告消息
No grammar constraints (DTD or XML Schema) referenced in the document.
我在 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">
我应该怎么做才能解决这个问题?
首先,您使用的架构是 public URL。尝试从 Internet 下载是显而易见的。
如果您对下载的架构使用相对路径,它应该可以工作(但不推荐)
编辑:
在浏览了一些帖子后,我发现了这个 example。希望对您有所帮助
模式在互联网连接期间工作正常,但当互联网连接关闭时它向我显示以下警告消息
No grammar constraints (DTD or XML Schema) referenced in the document.
我在 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">
我应该怎么做才能解决这个问题?
首先,您使用的架构是 public URL。尝试从 Internet 下载是显而易见的。
如果您对下载的架构使用相对路径,它应该可以工作(但不推荐)
编辑:
在浏览了一些帖子后,我发现了这个 example。希望对您有所帮助