作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是 OrientDB 的新手并使用 orientdb-community-1.7.4 版本。我有两个项目。项目一个 用于操作 orientdb 数据库(CRUD 操作等)。项目乙 是一个 maven 项目(Liferay portlet),其中包括项目 一个 作为依赖。
在项目中 乙 我创建了新的 Edge 对象,该对象保存在数据库中。然后我想从数据库中获取这个对象:
ApplicationContext appC = new ClassPathXmlApplicationContext("ApplicationContext.xml");
OrientDatabaseConnectionManager connMan = (OrientDatabaseConnectionManager) appC.getBean("orientConnectionManager");
OrientGraph graph = connMan.getGraph();
Edge edge = graph.getEdge("#37:20");
com.orientechnologies.orient.core.exception.ODatabaseException: Database instance is not set in current thread. Assure to set it with: ODatabaseRecordThreadLocal.INSTANCE.set(db);
at com.orientechnologies.orient.core.db.ODatabaseRecordThreadLocal.get(ODatabaseRecordThreadLocal.java:31)
at com.orientechnologies.orient.core.id.ORecordId.getRecord(ORecordId.java:293)
at com.tinkerpop.blueprints.impls.orient.OrientBaseGraph.getEdge(OrientBaseGraph.java:840)
package persistence.graphdb.graphDBConnectionInit;
import com.tinkerpop.blueprints.impls.orient.OrientGraph;
import com.tinkerpop.blueprints.impls.orient.OrientGraphFactory;
/**
* Class manages connection to the graph database.
* See http://www.orientechnologies.com/docs/1.7.8/orientdb.wiki/Java-Tutorial:-Introduction.html
* for the graph database instantiation
*/
public class OrientDatabaseConnectionManager {
private OrientGraphFactory factory;
public OrientDatabaseConnectionManager(String path, String name, String pass) {
factory = new OrientGraphFactory(path, name, pass).setupPool(1,10);
}
/**
* Method returns graph instance from the factory's pool.
* @return
*/
public OrientGraph getGraph(){
return factory.getTx();
}
}
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:util="http://www.springframework.org/schema/util"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.1.xsd">
<context:property-placeholder properties-ref="graphDbProperties"/>
<util:properties id="graphDbProperties">
<prop key="orientEmbeddedDbPath">plocal:/Users/and/orientdb-community-1.7.4/databases/graphDb</prop>
<prop key="orientName">admin</prop>
<prop key="orientPass">admin</prop>
</util:properties>
<!-- ORIENT DB config -->
<bean id="orientConnectionManager" class="persistence.graphdb.graphDBConnectionInit.OrientDatabaseConnectionManager">
<constructor-arg index="0" value="${orientEmbeddedDbPath}"/>
<constructor-arg index="1" value="${orientName}"/>
<constructor-arg index="2" value="${orientPass}"/>
</bean>
</beans>
最佳答案
对于 2.x 版本,您应该使用
database.activateOnCurrentThread(); //v 2.1
// for OrientDB v. 2.0.x: database.setCurrentDatabaseInThreadLocal();
关于database-connection - ODatabaseException : Database instance is not set in current thread,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29473050/
我是 OrientDB 的新手并使用 orientdb-community-1.7.4 版本。我有两个项目。项目一个 用于操作 orientdb 数据库(CRUD 操作等)。项目乙 是一个 maven
我是一名优秀的程序员,十分优秀!