File tree Expand file tree Collapse file tree 2 files changed +1
-4
lines changed
springdoc-openapi-webflux-core/src/test/java/test/org/springdoc/api/app79 Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change 68
68
<maven-release-plugin .version>2.5.3</maven-release-plugin .version>
69
69
<nexus-staging-maven-plugin >1.6.8</nexus-staging-maven-plugin >
70
70
<swagger-api .version>2.1.4</swagger-api .version>
71
- <swagger-ui .version>3.32.1 </swagger-ui .version>
71
+ <swagger-ui .version>3.32.3 </swagger-ui .version>
72
72
<spring-security-oauth2 .version>2.3.8.RELEASE</spring-security-oauth2 .version>
73
73
<classgraph .version>4.8.69</classgraph .version>
74
74
<webjars-locator-core .version>0.45</webjars-locator-core .version>
Original file line number Diff line number Diff line change 2
2
3
3
import java .util .List ;
4
4
5
- import io .swagger .v3 .oas .annotations .Operation ;
6
5
import reactor .core .publisher .Mono ;
7
6
8
7
import org .springframework .http .ResponseEntity ;
9
8
import org .springframework .web .bind .annotation .GetMapping ;
10
9
11
10
public abstract class BaseController <TClientModel extends BaseClientModel > {
12
- @ Operation
13
11
@ GetMapping ("/test1" )
14
12
Mono <ResponseEntity <TClientModel >> get1 () {
15
13
return null ;
16
14
}
17
15
18
- @ Operation
19
16
@ GetMapping ("/test2" )
20
17
Mono <ResponseEntity <List <TClientModel >>> get2 () {
21
18
return null ;
You can’t perform that action at this time.
0 commit comments