In Spring MVC 4 controller i am getting in capital letter
{ "Result":"OK", "Records":[ ....... ]}which is requred for Jquery Jtable but when it reaches js it is converting to
{ "result":"OK", "records":[ ....... ]}
and a blank alert message popup. I am using below json dependency with spring mvc 4.0.1.RELEASE , Hibernate 4.2.1-Final
org.codehaus.jackson
jackson-mapper-asl
1.9.13
com.fasterxml.jackson.core
jackson-core
2.4.1
com.fasterxml.jackson.core
jackson-databind
2.4.1.1
Please let me know if any one have any solution and why it is converting into lowercase automatically?