schema 在互联网连接期间工作正常,但在互联网连接关闭时向我显示以下警告消息
文档中未引用语法约束(DTD 或 XML 架构(。
我在 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">
我应该怎么做才能解决这个问题?
首先,您使用的是作为公共 URL 的架构。很明显,尝试从互联网下载。
如果对下载的架构使用相对路径,它应该可以工作(但不建议这样做(
编辑:
浏览了一些帖子后,我找到了这个例子。希望对你有帮助