2016-08-29 15 views
2

私はKieワークベンチ6.3.0を使用してルールを作成しています。ストリームモードでルールを実行しようとしています。 私はkie-wbでプロジェクトを作成し、kie-baseを作成しました。 このためにkie server runtimeを使用しています。コンストラクタを作成できませんでした:: Kie Workbench

<kmodule xmlns="http://jboss.org/kie/6.0.0/kmodule" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 
    <kbase name="myKieBase" default="false" eventProcessingMode="stream" equalsBehavior="identity" packages="*"/> 
</kmodule> 

そして、次のpersistence.xmlファイルされる: これは、生成KMODULEコードがある

<?xml version="1.0" encoding="UTF-8" standalone="yes"?> 
<persistence xmlns="http://java.sun.com/xml/ns/persistence" xmlns:orm="http://java.sun.com/xml/ns/persistence/orm" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="2.0" xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd http://java.sun.com/xml/ns/persistence/orm http://java.sun.com/xml/ns/persistence/orm_2_0.xsd"> 
    <persistence-unit name="com.sample:EventBusinessRules:2.6" transaction-type="JTA"> 
     <provider>org.hibernate.ejb.HibernatePersistence</provider> 
     <jta-data-source>java:jboss/datasources/ExampleDS</jta-data-source> 
     <class>com.sample.EventData</class> 
     <exclude-unlisted-classes>true</exclude-unlisted-classes> 
     <properties> 
      <property name="hibernate.dialect" value="org.hibernate.dialect.H2Dialect"/> 
      <property name="hibernate.max_fetch_depth" value="3"/> 
      <property name="hibernate.hbm2ddl.auto" value="update"/> 
      <property name="hibernate.show_sql" value="false"/> 
      <property name="hibernate.id.new_generator_mappings" value="false"/> 
      <property name="hibernate.transaction.jta.platform" value="org.hibernate.service.jta.platform.internal.JBossAppServerJtaPlatform"/> 
     </properties> 
    </persistence-unit> 
</persistence> 

次のエラー

Deployment of unit com.sample:SampleBusinessRules:2.7 failed: [Error: could not create constructor: null] [Near : {... new org.drools.persistence.jpa.mar ....}]^[Line: 1, Column: 5] 

に取得していますキエWBからプロジェクトをデプロイするときこのエラーを解決するのを手伝ってください。 ありがとうございます

答えて

0

このpersistence.xmlファイルは、ユニットcom.sample:EventBusinessRules:2.6用です。

<persistence-unit name="com.sample:EventBusinessRules:2.6" transaction-type="JTA"> 

配備しようとするユニットは、com.sample:SampleBusinessRules:2.7です。最初のステップとして、xmlの名前を変更する必要があると思います。

+0

ありがとうございます。その私の間違いは、私はここにそれを掲示しながらクラスの名前を変更しました。私はそれをどこでも正しく変更しませんでした。 Persistence.xmlファイルは自動的に生成されるので、クラス名のエラーはありません。このエラーを解決するために、マーシャリング戦略タグを削除してkie-deployment-descriptor.xmlファイルを変更しました。 –

2

kie-deployment-descriptor.xmlからマーシャリングタグを削除しましたが、プロジェクトの配備中にエラーが発生しませんでした。

<marshalling-strategy> 
       <resolver>mvel</resolver> 
       <identifier>new org.drools.persistence.jpa.marshaller.JPAPlaceholderResolverStrategy("com.sample.rules:EventBusinessRules:2.6", classLoader)</identifier> 
       <parameters/> 
      </marshalling-strategy> 

このタグはの下に存在します。 kie-deployment-descriptor.xmlのエディタで、追加された行を削除します。

+0

この変更の影響は何ですか? – izodev

関連する問題