Docker容器无法读取http链接 - 驼峰
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Docker容器无法读取http链接 - 驼峰相关的知识,希望对你有一定的参考价值。
所以我正在为Windows中的一个Camel
Spring boot
项目创建一个docker容器。在项目中,在我的camelcontext.xml
开头,我有以下代码 -
<beans
xmlns="http://www.springframework.org/schema/beans"
xmlns:camel="http://camel.apache.org/schema/spring"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:security="http://www.springframework.org/schema/security"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/security http://www.springframework.org/schema/security/spring-security.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd
http://activemq.apache.org/schema/core http://activemq.apache.org/schema/core/activemq-core.xsd
http://camel.apache.org/schema/spring http://camel.apache.org/schema/spring/camel-spring.xsd"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
.
.
// remaining part of code
现在,对于xsi:schemaLocation="http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd ..."
部分,docker容器无法访问.xsd文件。
此外,不确定是否相关,我有另一个单独的容器,有一个jhipster应用程序,我能够在我的本地浏览器中打开该应用程序。我也在网上的几个链接中找到了DNS更改。 (通过更改,我的意思是在创建的虚拟交换机中添加8.8.8.8和8.8.4.4)
不知道为什么我无法访问容器中的文件以及问题所在。
以下是我得到的错误 -
线程“main”中的异常org.springframework.beans.factory.xml.XmlBeanDefinitionStoreException:来自类路径资源[META-INF / spring / camelContext.xml]的XML文档中的第10行无效;嵌套异常是org.xml.sax.SAXParseException; lineNumber:10; columnNumber:44; cvc-elt.1:找不到元素'beans'的声明。
org.xml.sax.SAXParseException; lineNumber:10; columnNumber:44; cvc-elt.1:找不到元素'beans'的声明。
在line 10, column 44
上面是我粘贴的代码。
PS - 验证了xml文件,我检查它here。
- 通过将
www.springframework.org
替换为可以通过pingwww.springframework.org
获得的ip地址,确保问题与DNS无关 - 在docker run命令中使用
--network=host
启动容器。
以上是关于Docker容器无法读取http链接 - 驼峰的主要内容,如果未能解决你的问题,请参考以下文章