springfox-grails-integration
springfox-grails-integration copied to clipboard
SpringFox integration with Grails 3.x
I couldnt find any docs so have to ask the question here. What I am looking for, is to hook into schema object generation. https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.0.0.md#schemaObject So that we can generate...
Hi, I am in need of substituting some Models in the following way. Lets say I have a domain class as follows: ``` package My.Domains class Company { String name...
Hi, I am trying to implement a Bearer token authentication. I am experiencing the exact same problems as explained in this issue: [https://github.com/springfox/springfox/issues/2194](url). I followed all recommendations but I am...
Integration throws exception when allowedMethods contains List of methods instead of single string
In a Grails controller, there are two forms for the static allowedMethods. `static allowedMethods = [ 'actionName': 'POST' ] // for a single verb` or `static allowedMethods = [ 'actionName':...
@dilipkrish I have went through and got the project working with Grails 3.3.2. This update gets the dependencies and imports updated correctly. The other major change made is to have...
if `@ApiImplicitParam.dataType` references a non-simple type (i.e. a custom class), you also need to reference that class via `Docket.additionalModels`. would make sense to do that automatically, i think.
it would be good to have a way to configure a custom path for an action. if you have multiple url mappings poiting to the same action, currently only the...
Doesnt consider nullable constraint, and make the property required if it is not nullable.
Problem getting grails to start after upgrading to 3.3 Try running .... ```bash $ ./gradlew clean :springfox-grails-contract-tests:build -x test ``` You'll get an error 👇 Integration Test Failure ```xml java.lang.IllegalStateException:...