2014-05-23 57 views
2

東方DB已經和問題orientdb社區-1.7-RC2OrientDB在上下文錯誤中找不到數據庫實例?

當我嘗試如下

var db = orient.getDatabase() 
return 'test'; 

並執行它,我得到以下埃羅

上解析錯誤創建一個小的功能腳本位置#0:執行腳本時出錯 腳本:newPOJS ------^ sun.org.mozilla.javascript.internal.WrappedException:包裝com.orientechnologies.orient.core.exception.OConfigurationException:找不到數據庫實例ñ上下文(#2),在2號線 裹com.orientechnologies.orient.core.exception.OConfigurationException:在上下文中沒有發現數據庫實例(#2) 在上下文中沒有發現數據庫實例

然而下面的函數作品罰款,當我得到的圖形,而不是數據庫

var db = orient.getGraph() 
return 'test'; 

任何一個具有這樣的問題,

我做了如下配置變化以及

任何想法210

回答

1

這裏

<handler class="com.orientechnologies.orient.graph.handler.OGraphServerHandler"> 
     <parameters> 
      <parameter value="true" name="enabled"/> 
      <parameter value="50" name="graph.pool.max"/> 
     </parameters> 
    </handler> 

需要從orientdb服務器-config.xml中刪除。因爲看起來orient.getGraph()和orient.getDatabase()操作不能被配置爲同時工作。要使用orient.getGraph()在配置文件中使用上述處理程序。要使用orient.getDatabase()從config中刪除以下處理程序。

相關問題