[java-play-framework] Error building the project when config parameters are overridden
#6,867 建立於 2017年11月2日
倉庫指標
- Star
- (12,701 star)
- PR 合併指標
- (30 天內沒有已合併 PR)
描述
Description
We generated the Source code from swagger.yaml , we also have config.json that overrides certain parameters (mentioned below) , When we try to build the code it fails due to overridden params are not reflecting in "Module.java"
Swagger-codegen version
2.3.0
Swagger declaration file content or url
can try with any swagger file (say petstore.yaml)
Command line used for generation
java -jar swagger-codegen-2.3.0 jar -i petstore.yaml -c config.json -l java-play-framework
in config.json add below line to override
"apiPackage":"com.puppies.store.apis",
Steps to reproduce
This generates the code , when we build it fails , the cause is because in which Module.java has still older statement
import controllers.*;
ideally , since we overridden "apiPackage" it should be
import com.puppies.store.apis.*;
once we changed this manually , we could build it fine . so ideally code generator need to be fixed !