Spring应用程序没有考虑spring.schemas

时间:2013-12-12 16:21:58

标签: java spring xsd classpath spring-boot

我有一个使用spring-boot 0.5.0M2的Spring批处理。我使用程序集jar-with-dependencies来生成可执行的JAR文件。我已经检查过生成的JAR是否具有正确的依赖关系,即所有必需的Sprinf xsds都位于它们应该的位置,并且spring-boot插件生成了正确的META-INF / spring.schemas。

我从Cygwin终端运行我的应用程序,但由于我的代理需要NTLM身份验证,我无法从Cygwin shell访问网络。

如果我用mvn spring-boot运行我的应用程序:运行它有效。但是在生产中,批处理将使用java -jar myExecutableJar.jar运行,我很确定服务器将无法访问Internet。

在这种情况下,我收到以下错误:

  .   ____          _            __ _ _
 /\\ / ___'_ __ _ _(_)_ __  __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
 \\/  ___)| |_)| | | | | || (_| |  ) ) ) )
  '  |____| .__|_| |_|_| |_\__, | / / / /
 =========|_|==============|___/=/_/_/_/
 :: Spring Boot ::

2013-12-12 17:15:42,197 INFO [fr.foo.my.app.MyBatch] - <Starting MyBatch on UC401711VW7JAV1 with PID 6848 (C:\nicolas\git\foobatch\target\indexer-batch-0.2.0-jar-with-dependencies.jar started by S818203)>
2013-12-12 17:16:03,481 WARN [org.springframework.beans.factory.xml.XmlBeanDefinitionReader] - <Ignored XML validation warning>
org.xml.sax.SAXParseException; lineNumber: 12; columnNumber: 12; schema_reference.4 : Echec de la lecture du document de sch▒ma 'http://www.springframework.org/schema/beans/spring-beans-3.2.xsd' pour les raisons suivantes : 1) Le document est introuvable ; 2) Le document n'a pas pu ▒tre lu ; 3) L'▒l▒ment racine du document n'est pas <xsd:schema>.
        at com.sun.org.apache.xerces.internal.util.ErrorHandlerWrapper.createSAXParseException(Unknown Source)
[...]
Caused by: java.net.ConnectException: Connection timed out: connect
        at java.net.DualStackPlainSocketImpl.connect0(Native Method)
        at java.net.DualStackPlainSocketImpl.socketConnect(Unknown Source)
        at java.net.AbstractPlainSocketImpl.doConnect(Unknown Source)
        at java.net.AbstractPlainSocketImpl.connectToAddress(Unknown Source)
        at java.net.AbstractPlainSocketImpl.connect(Unknown Source)
        at java.net.PlainSocketImpl.connect(Unknown Source)
        at java.net.SocksSocketImpl.connect(Unknown Source)
        at java.net.Socket.connect(Unknown Source)
        at java.net.Socket.connect(Unknown Source)
        at sun.net.NetworkClient.doConnect(Unknown Source)
        at sun.net.www.http.HttpClient.openServer(Unknown Source)
        at sun.net.www.http.HttpClient.openServer(Unknown Source)
        at sun.net.www.http.HttpClient.<init>(Unknown Source)
        at sun.net.www.http.HttpClient.New(Unknown Source)
        at sun.net.www.http.HttpClient.New(Unknown Source)
        at sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(Unknown Source)
        at sun.net.www.protocol.http.HttpURLConnection.plainConnect(Unknown Source)
        at sun.net.www.protocol.http.HttpURLConnection.connect(Unknown Source)
        at sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown Source)
        at [...]

所以我将此解释为试图下载spring-beans-3.2 XSD的应用程序,而不是考虑spring.schemas并使用JAR中存在的类路径资源。

有没有办法强制Spring上下文执行此操作?

感谢您的帮助!

1 个答案:

答案 0 :(得分:0)

此错误的最常见原因是在XML中使用显式版本化架构URL,然后意外地在类路径中包含相关JAR的版本。例如。如果您在XML标头中引用spring-beans-4.0.xsd,但在传递依赖项中包含spring-context:3.2.*