You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
-3Lines changed: 0 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,6 @@ __Features:__
13
13
* Support for using Spring placeholder values `${...}` in the configuration
14
14
* Easy to extend by using the standard Springfox classes
15
15
* Convention based naming of values displayed in swagger-ui, minimizing the need for manual configuration
16
-
* Can display all the `@Value` annotations used, with the key and the default value
17
16
18
17
---
19
18
@@ -84,7 +83,6 @@ __Full example__
84
83
```java
85
84
@EnableSpringfox(
86
85
conventionMode=false,
87
-
listValueProps=true,
88
86
swaggerUiBasePath="",
89
87
includeControllers=MyController.class,
90
88
value=@Info(
@@ -101,7 +99,6 @@ __Full example__
101
99
It will remove _Controller_ at the end of the text if it is present. Additionally, it will split the operation name by
102
100
replacing camelcase with space and uppercasing the word (for example the method `getCustomer()` will be displayed as `Get customer`).
103
101
If the `@ApiOperation` annotation is present, these values will be used.
104
-
*__listValueProps__ is used to enable an endpoint that will display all the `@Value`-annotations (key and default value) used in the application. The endpoint is displayed in swagger-ui as 'Value-properties'. By default this is disabled.
105
102
*__swaggerUiBasePath__ customize the base path to swagger-ui. If the value is for example '/documentation', the path to swagger-ui will be '/documentation/swagger-ui.html'.
106
103
*__includeControllers__ add controllers to the swagger configuration that is not registered in the default base package (which is based on the Application class).
0 commit comments