There is a restful service on SpringBoot . Requests were tested Postmanom (for Windows). After the automatic update of Postman, the request parameters with values ​​in Cyrillic began to arrive at the service with codes. Example:

Postman GET http: // localhost: 8080 / regions? Query = Pen At the service comes - '5='

Postman GET http: // localhost: 8080 / regions? Query = PenBar At the service comes - '5=Bar'

The browser performs the same requests normally.

Who knows, maybe somewhere in Postman you can tweak something in the settings.
Or how to write the developers correctly.

Postman Version - 4.7.0

    1 answer 1

    Found the answer on the Postman documentation site. It turns out that there is no automatic recoding of url parameters in the native version.

    https://www.getpostman.com/docs/requests

    For recoding, we turn on the Params parameter editor. Select the value of the parameter. PCM -> EncodeURIComponent

    Parameters for you enter the URL. EncodeURIComponent to click on it to select the parameter value.

    Postman window