swagger-api/swagger-codegen

[java-play-framework] Error building the project when config parameters are overridden

Open

#6867 aperta il 2 nov 2017

Vedi su GitHub
 (14 commenti) (0 reazioni) (0 assegnatari)HTML (5474 fork)batch import
Issue: BugServer: Javahelp wanted

Metriche repository

Star
 (12.701 star)
Metriche merge PR
 (Nessuna PR mergiata in 30 g)

Descrizione

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 !

Related issues/PRs
Suggest a fix/enhancement

Guida contributor