I am using (bypassed ENTESB-9868) camel-undertow, camel-swagger-java and REST DSL for creating REST endpoint with API doc. I am using HTTPS protocol. (see attached reproducer). I am getting wrong sheme in swagger.json.
My output on " https://localhost:4444/swagger.json".
{
"swagger": "2.0",
"info": {
"description": "Camel Rest App with Swagger",
"version": "1.0",
"title": "Rest swagger"
},
"host": "localhost:4444",
"basePath": "/",
"tags": [
{
"name": "user"
}
],
"schemes": [
"http"
],
"paths": {
"/user": {
"get": {
"tags": [
"user"
],
"operationId": "route1",
"responses": {
"200": {}
}
}
}
}
}
- is blocked by
-
ENTESB-9868 Camel rest DSL does not work with SSL configuration and API doc on spring-boot
-
- Closed
-