i have an URL in my application, tes/{name}
i want to pass "this%string" to the path variable. so the URL will be tes/this%string
but java changes that into another string because i pass symbol.
i need that percent symbol to process the data in the business class.
how can i pass percent symbol into the URL?
thank you.