0

我最初将此作为错误发布在 OrientDB问题跟踪器上。但是,我不太确定这是一个错误......

基本上,当我从 IDE 运行项目时,一切正常,所有查询都能顺利执行。但是,当我使用打包项目时,maven-shade-plugin我开始收到这些Cannot find a command executor for the command request:错误,但仅针对查询的子集。在我pom.xml的声明中:

<!-- As defined: http://orientdb.com/docs/last/Graph-Database-Tinkerpop.html  -->
<dependency>
    <groupId>com.orientechnologies</groupId>
    <artifactId>orientdb-core</artifactId>
    <version>${orientdb-version}</version>
</dependency>
<dependency>
    <groupId>com.orientechnologies</groupId>
    <artifactId>orientdb-graphdb</artifactId>
    <version>${orientdb-version}</version>
</dependency>
<dependency>
    <groupId>com.tinkerpop.blueprints</groupId>
    <artifactId>blueprints-core</artifactId>
    <version>2.5.0</version>
</dependency>
<dependency>
     <groupId>net.java.dev.jna</groupId>
     <artifactId>jna-platform</artifactId>
     <version>4.0.0</version>
 </dependency>
 <dependency>
     <groupId>net.java.dev.jna</groupId>
     <artifactId>jna</artifactId>
     <version>4.2.0</version>
 </dependency>
 <dependency>
     <groupId>com.googlecode.concurrentlinkedhashmap</groupId>
     <artifactId>concurrentlinkedhashmap-lru</artifactId>
     <version>1.4.2</version>
 </dependency>
<!-- Include to enable embedded db if user selects single mode -->
<dependency>
    <groupId>com.orientechnologies</groupId>
    <artifactId>orientdb-server</artifactId>
    <version>${orientdb-version}</version>
</dependency>
<!-- Include to enable remote db if user selects distributed mode -->
<dependency>
    <groupId>com.orientechnologies</groupId>
    <artifactId>orientdb-client</artifactId>
    <version>${orientdb-version}</version>
</dependency>
...
<orientdb-version>2.1.3</orientdb-version>

我已将以下过滤器添加到阴影插件中,以尝试确保没有任何内容被剥离,但似乎并没有解决问题:

<filters>
    <filter>
        <artifact>*:*</artifact>
        <includes>
             <include>**</include>
        </includes>
   </filter>
</filters>

堆栈跟踪:

Caused by: com.orientechnologies.orient.core.command.OCommandExecutorNotFoundException: Cannot find a command executor for the command request: sql.CREATE EDGE hasRole FROM (SELECT FROM Person WHERE @rid=#15:0) TO (SELECT FROM Role WHERE @rid=#16:1)
    at com.orientechnologies.orient.core.sql.OCommandExecutorSQLDelegate.parse(OCommandExecutorSQLDelegate.java:72) ~[halo-1.0.0.jar:1.0.0]
    at com.orientechnologies.orient.core.sql.OCommandExecutorSQLDelegate.parse(OCommandExecutorSQLDelegate.java:42) ~[halo-1.0.0.jar:1.0.0]
    at com.orientechnologies.orient.core.storage.impl.local.OAbstractPaginatedStorage.command(OAbstractPaginatedStorage.java:1431) ~[halo-1.0.0.jar:1.0.0]
    at com.orientechnologies.orient.core.command.OCommandRequestTextAbstract.execute(OCommandRequestTextAbstract.java:63) ~[halo-1.0.0.jar:1.0.0]
    at com.tinkerpop.blueprints.impls.orient.OrientGraphCommand.execute(OrientGraphCommand.java:49) ~[halo-1.0.0.jar:1.0.0]
    at co.ff36.halo.core.persistence.Dao.exec(Dao.java:94) ~[halo-1.0.0.jar:1.0.0]
    at co.ff36.halo.core.resource.server.UserRoleServerResource.store(UserRoleServerResource.java:63) ~[halo-1.0.0.jar:1.0.0]
    ... 57 common frames omitted
4

1 回答 1

2

问题是 maven-shade-plugin 默认无法合并服务文件。OrientDB 使用 Java 服务注入具有相同接口的命令。我想如果你在构建时看到一些日志,你会看到阴影插件跳过了一些文件,因为它们已经存在。我认为您可以添加一些合并策略来解决它

https://maven.apache.org/plugins/maven-shade-plugin/examples/resource-transformers.html#ServicesResourceTransformer

于 2015-10-14T15:31:09.413 回答