当我手动生成 JHipster 应用程序时,我被问到是否要采用“API 优先”方法(例如:您还想使用哪些其他技术?> 使用 OpenAPI 生成器进行 API 优先开发)
如果想使用 JDL 文件创建应用程序,我该怎么做?例如:
application {
config {
baseName myapp
applicationType monolith
devDatabaseType mysql
prodDatabaseType mysql
buildTool maven
clientFramework react
enableTranslation true
nativeLanguage en
languages [en, de]
enableOpenApi true <-- What is the correct way to enable OpenAPI?
}
entities *
}