Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
None
-
None
Description
For example:
```
public class Test
{ @ApiOperation(value="helloWithValue", nickname="helloWithValue") public String hello(String name, String value); @ApiOperation(value="hello", nickname="hello") public String hello(String name); }```
The generated swagger will have randomly helloBdoy like:
```
helloBody:
properties:
name: String
```
or
```
helloBody:
properties:
name: String
value: String
```