I have such string value in my json:
{
"number": "3111\/227\/005369",
}
I'm using ObjectMapper autoconfigured with Spring Boot and it ignores all of \
This is the result of deserialized property i have:
number="3111/227/005369"
ObjectMapper totally ignore \
This is my expectations of field String value:
number="3111\\/227\\/005369"
how may i solve this problem ?