@RequestBody使用不能class类型匹配

在首次第一次尝试使用@RequestBody注解,开始加载字符串使用post提交(貌似只能post),加Json数据格式传输的时候,

 data:{"stockCode":"601288","startTime":"2011-11-10 09:05","endTime":"2019-11-20 09:10"}",
  type: "POST",
     contentType: "application/json",

这么做是完全没有问题,但是当尝试注入到一个class里面,怎么都进不去,直接报不允许加载,最后发现在小xml里面需要加上


        
            
        
    

并且修改
data:"{\"stockCode\":\"601288\",\"startTime\":\"2011-11-10 09:05\",\"endTime\":\"2019-11-20 09:10\"}",

这样是没有问题的!

你可能感兴趣的:(@RequestBody使用不能class类型匹配)