Swagger-core: Swagger2 breaks manual positioning

Created on 8 May 2015  路  16Comments  路  Source: swagger-api/swagger-core

I'd like to preserve manual positioning after the transition from 1.2 to 2. The Swagger object seems to allow order preserving insertion for paths, but then it does a manual sort prior to retrieval.

I feel like the position parameter on the @ApiOperation and @Api annotation either needs to be deprecated, or the Swagger 2.0 model should honor that ordering. I'd prefer the latter.

Most helpful comment

Sounds like some BS, removed important feature with no care to fix.

All 16 comments

Cool. Thanks for the info.

So how should I order my methods when the 'position' attribute is deprecated?
As I'm using swagger-maven-plugin (JAX-RS) and I want a custom order of my methods in the swagger.json.

It's not an array, so you can't really guarantee order.

So, it was possible with the 'position' attribute but now it is not :) perfect

In Swagger 1.2 operations were an array. In 2.0 they're not.

Sets and maps both have order-preserving implementations in Java. See LinkedHashSet and LinkedHashMap

They do. In JSON parsing, order of object's properties order is not guaranteed.

But if the 'position' attribute is also exported in the JSON, the order will be guaranteed again.

Yes, but there's no position attribute in the spec, so it can't be exported.

Closing for now, Please reopen as needed.

+1 on this as a important loss of functionality.
If the spec needs to change, then so be it. Its really important to be able to specify an order for Resources and Operations.

@sschwell - the spec is not going to change any time soon to support it. The order of resources _can_ be controlled based on the order of the tags as you declare them. The order of the operations can't.

Is there any option to set the order of API methods @ApiOperation annotation?

As said, not during generation. You can potentially change the order in display if the tools allow it.

Sounds like some BS, removed important feature with no care to fix.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

rockxwre picture rockxwre  路  4Comments

yntelectual picture yntelectual  路  3Comments

CeccoCQ picture CeccoCQ  路  3Comments

NathanStrong-Tripwire picture NathanStrong-Tripwire  路  3Comments

youkuan picture youkuan  路  5Comments