0
jhipster-generator v4.13.1を使用して、メインjhipsterアプリケーションを生成します。その後、マルチテナント生成プログラムをインストールするには、Jhipsterでjhipster-multitenancyアプリケーションを生成するときのHibernateキャッシュエラー
`npm install generator-jhipster-multitenancy`
のコマンドを使用します。
yo jhipster-multitenancy
を実行しようとすると問題が発生するため、アプリケーションにエイリアスとは何かが表示されます。私はこのような状況でEnterキーを押した後、(社)次のエラーは、我々はcacheProvider
とenableHibernateCache
に設定hibernateCache
を変更するためです
events.js:182
throw er; // Unhandled 'error' event
^
ReferenceError: /home/joag/Proyectos/Munkys/prueba2/node_modules/generator-jhipster-multitenancy/generators/app/templates/src/main/java/package/domain/_User.java:26
24| import com.fasterxml.jackson.annotation.JsonIgnore;
25| import org.apache.commons.lang3.StringUtils;<% if (databaseType === 'sql') { %>
>> 26| import org.hibernate.annotations.BatchSize;<% } %><% if (hibernateCache !== 'no' && databaseType === 'sql') { %>
27| import org.hibernate.annotations.Cache;
28| import org.hibernate.annotations.CacheConcurrencyStrategy;<% } %>
29| import org.hibernate.validator.constraints.Email;
hibernateCache is not defined
at eval (eval at compile (/home/joag/Proyectos/Munkys/prueba2/node_modules/ejs/lib/ejs.js:549:12), <anonymous>:28:8)
at returnedFn (/home/joag/Proyectos/Munkys/prueba2/node_modules/ejs/lib/ejs.js:580:17)
at Object.exports.render (/home/joag/Proyectos/Munkys/prueba2/node_modules/ejs/lib/ejs.js:384:37)
at process (/home/joag/Proyectos/Munkys/prueba2/node_modules/mem-fs-editor/lib/actions/copy-tpl.js:12:18)
at applyProcessingFunc (/home/joag/Proyectos/Munkys/prueba2/node_modules/mem-fs-editor/lib/actions/copy.js:13:16)
at EditionInterface.exports._copySingle (/home/joag/Proyectos/Munkys/prueba2/node_modules/mem-fs-editor/lib/actions/copy.js:63:16)
at files.forEach.file (/home/joag/Proyectos/Munkys/prueba2/node_modules/mem-fs-editor/lib/actions/copy.js:50:10)
at Array.forEach (<anonymous>)
at EditionInterface.exports.copy (/home/joag/Proyectos/Munkys/prueba2/node_modules/mem-fs-editor/lib/actions/copy.js:49:9)
at EditionInterface.module.exports [as copyTpl] (/home/joag/Proyectos/Munkys/prueba2/node_modules/mem-fs-ed
問題を報告していただきありがとうございます。私たちは今週それに乗ります。 –