-
Notifications
You must be signed in to change notification settings - Fork 9.2k
Closed
Labels
Description
Q&A (please complete the following information)
- OS: Linux
- Browser: Chrome
- Version: 132.0.6834.159
- Method of installation: Maven
- Swagger-UI version: 5.19.3
- Swagger/OpenAPI version: OpenAPI 3.0
Content & configuration
URL:
Example Swagger/OpenAPI definition:
openapi: 3.1.0
info:
title: OpenAPI definition
version: v0
servers:
- url: http://localhost:8080
description: Generated server url
paths:
/täst/{id}:
get:
tags:
- example-controller
operationId: testMitUmlaut
parameters:
- name: id
in: path
required: true
schema:
type: string
responses:
"200":
description: OK
content:
'*/*':
schema:
type: string
components: {}
Swagger-UI configuration options:
SwaggerUI({
// your config options here
})
?yourQueryStringConfig
Describe the bug you're encountering
To reproduce...
Steps to reproduce the behavior:
- Go to Swagger UI in Browser
- Click on 'Try it out'
- Enter path parameter (e.g. '42')
- Click on 'Execute'
- See url in execution info (curl, reqest url) -> http://localhost:8080/täst/{id}
Expected behavior
URL in execution info should be: http://localhost:8080/täst/42
Screenshots
Additional context or thoughts
PeraBaja