创建jhipster应用程序后是否可以更改缓存机制

Is it possible to change the cache mechanism after creating a jhipster application

我创建了一个启用了 ehcache 的 jhipster 微服务项目。后来觉得,把缓存机制从ehcache改成Hazelcast。是否可以在不创建新项目的情况下使用现有的 jhipster 微服务应用程序执行此操作?

只需编辑项目中的 .yo-rc.json 文件,将 "hibernateCache": "ehcache" 行更改为 "hibernateCache": "hazelcast" 然后 运行 jhipster --with-entities 以重新生成项目.不要忘记之前提交所有更改。