Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I have the following feign annotation in my feign client and it is all working ok. Things have changed and I have been told that the {path} is actually a relative file path on the file system and as such will contain 1 ..* / slash characters.

    @RequestLine("GET /api/v1/data/{path}")

I have tried everything including encoding the string prior to calling the feign client so / is encoded to %2F but I just keep getting a 400 error code.

Has anyone found a way of getting around this problem when trying to use reserved characters in the URL?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
3.6k views
Welcome To Ask or Share your Answers For Others

1 Answer

等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...