2016-03-21 49 views
0

我從不同的騾子項目資源遷移,以一個騾子領域工程(應該由所有其他騾子項目中使用)。除了mongodb的配置以外,一切正常。如果我開始一切與域開始初始化我得到以下錯誤:org.xml.sax.SAXParseException:無法讀取模式文檔騾子mongo.xsd在騾子域配置

org.xml.sax.SAXParseException: schema_reference.4: Failed to read schema document 'http://www.mulesoft.org/schema/mule/mongo/current/mule-mongo.xsd' 

請參見相應的騾子域config.xsd

<?xml version="1.0" encoding="UTF-8"?> 
<mule-domain 
    xmlns="http://www.mulesoft.org/schema/mule/domain" 
    xmlns:mule="http://www.mulesoft.org/schema/mule/core" 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xmlns:spring="http://www.springframework.org/schema/beans" 
    xmlns:context="http://www.springframework.org/schema/context" 
    xmlns:doc="http://www.mulesoft.org/schema/mule/documentation" 
    xmlns:mongo="http://www.mulesoft.org/schema/mule/mongo" 
    xmlns:http="http://www.mulesoft.org/schema/mule/http" 
    xsi:schemaLocation=" 
      http://www.mulesoft.org/schema/mule/domain http://www.mulesoft.org/schema/mule/domain/current/mule-domain.xsd 
      http://www.mulesoft.org/schema/mule/core http://www.mulesoft.org/schema/mule/core/current/mule.xsd 
      http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-current.xsd 
      http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd 
      http://www.mulesoft.org/schema/mule/mongo http://www.mulesoft.org/schema/mule/mongo/current/mule-mongo.xsd 
      http://www.mulesoft.org/schema/mule/http http://www.mulesoft.org/schema/mule/http/current/mule-http.xsd"> 

    <!-- configure here resource to be shared within the domain --> 

    <context:property-placeholder location="${mule.env}.properties "/> 

    <mongo:config name="mongoconfig" host="${mongo.host}" port="${mongo.port}" database="${mongo.database}" doc:name="Mongo DB" connectTimeout="5000" connectionsPerHost="1" autoConnectRetry="true" threadsAllowedToBlockForConnectionMultiplier="50" username="${mongo.username}"> 
     <mongo:connection-pooling-profile maxActive="150" initialisationPolicy="INITIALISE_ONE" exhaustedAction="WHEN_EXHAUSTED_GROW" maxIdle="50" ></mongo:connection-pooling-profile> 
     <mule:reconnect frequency="1000"></mule:reconnect> 
    </mongo:config> 

    <http:listener-config name="HTTP_Listener_Configuration" host="${http.host}" port="${http.port}" doc:name="HTTP Listener Configuration"/> 

</mule-domain> 

我的第一個想法是,我需要添加對pom.xml的依賴的mule-module-mongo的。但是這並沒有改變任何東西。

在Mule Projects中相同的配置,使用相同的模式聲明工作得很好。我在這裏想念什麼?

回答

1

問題是Mongo不支持作爲共享資源,因此您無法在域級別定義它的配置。

你可以找到更多關於什麼連接器支持here的信息。

HTH

+0

這就是問題!謝謝你afelisatti!我沒有仔細閱讀本頁面! – oltoko