是否可以在不破坏Jhipster生成器功能的情况下重命名默认的Java包?

时间:2019-05-30 14:04:45

标签: jhipster

我正在使用JHipster-6.0.1开始一个新项目,我想知道是否可以在不破坏 JHipster generator 功能的情况下重命名默认Java包。例如:

const galleryZone = new Dropzone(".dropzone-gallery", { url: your_upload_url_in_here, chunking: true, forceChunking: true, chunkSize: 2000000, success: (file, response) => { console.log(JSON.parse(file.xhr.response)); } }); myapp.aop.logging

myapp.infrastructure.loggingmyapp.config

myapp.infrastructure.configmyapp.security

myapp.infrastructure.securitymyapp.service

myapp.infrastructure.servicemyapp.domain

1 个答案:

答案 0 :(得分:1)

通过更改packageName或JDL文件中的.yo-rc.json,然后重新生成应用程序,可以进行前4次更改。

使用生成器无法从myapp.domain到myapp.infrastructure.jpa进行第五次更改,可以通过writing a blueprint完成。