phoenixnap / springmvc-raml-plugin

Spring MVC - RAML Spec Synchroniser Plugin. A Maven plugin designed to Generate Server & Client code in Spring from a RAML API descriptor and conversely, a RAML API document from the SpringMVC Server implementation.
Apache License 2.0
136 stars 84 forks source link

Problem with arrays as queryParameters #204

Closed stojsavljevic closed 6 years ago

stojsavljevic commented 6 years ago

When generating code from:

/test:
    post:
      queryParameters:
        locationIds:
          type: array
          items: integer

I get this:

public ResponseEntity<?> createCommonsThing(array locationIds);

array obviously doesn't compile.