|
12 | 12 | </init-param>
|
13 | 13 | <init-param>
|
14 | 14 | <param-name>jersey.config.server.provider.packages</param-name>
|
15 |
| - <!-- adding 'io.swagger.jaxrs2.integration.resources' is sufficent on it own to register the following paths: |
| 15 | + <!-- adding 'io.swagger.v3.jaxrs2.integration.resources' is sufficent on it own to register the following paths: |
16 | 16 | /openapi.json : OpenApi spec in json
|
17 | 17 | /openapi.yaml : OpenApi spec in yaml
|
18 | 18 | /openapi (Accept: : "application/json" : OpenApi spec in json
|
19 | 19 | /openapi (Accept: : "application/yaml" : OpenApi spec in yaml
|
20 | 20 | -->
|
21 | 21 | <param-value>
|
22 |
| - com.fasterxml.jackson.jaxrs.json,io.swagger.jaxrs2.integration.resources,io.swagger.sample.resource |
| 22 | + com.fasterxml.jackson.jaxrs.json,io.swagger.v3.jaxrs2.integration.resources,io.swagger.sample.resource |
23 | 23 | </param-value>
|
24 | 24 |
|
25 | 25 | <!--
|
|
28 | 28 | </param-value>
|
29 | 29 | -->
|
30 | 30 | </init-param>
|
| 31 | +<!-- |
| 32 | + <init-param> |
| 33 | + <param-name>javax.ws.rs.Application</param-name> |
| 34 | + <param-value>io.swagger.sample.MyApplication</param-value> |
| 35 | + </init-param> |
| 36 | +--> |
31 | 37 | <!-- alternatively specify resources classes
|
32 | 38 | <init-param>
|
33 | 39 | <param-name>jersey.config.server.provider.classnames</param-name>
|
34 | 40 |
|
35 | 41 | <param-value>
|
36 |
| - io.swagger.jaxrs2.integration.resources.OpenApiResource, |
| 42 | + io.swagger.v3.jaxrs2.integration.resources.OpenApiResource, |
37 | 43 | io.swagger.sample.resource.PetResource,
|
38 | 44 | io.swagger.sample.resource.UserResource
|
39 | 45 | </param-value>
|
|
64 | 70 | <servlet>
|
65 | 71 | <!-- use OpenApi servlet to serve spec -->
|
66 | 72 | <servlet-name>OpenApi</servlet-name>
|
67 |
| - <servlet-class>io.swagger.jaxrs2.integration.OpenApiServlet</servlet-class> |
| 73 | + <servlet-class>io.swagger.v3.jaxrs2.integration.OpenApiServlet</servlet-class> |
68 | 74 |
|
69 | 75 | <!-- alternatively specify resource package
|
70 | 76 | <init-param>
|
|
0 commit comments