springboot注解@RestController返回了xml格式数据

想要返回json,在方法上指定返回类型,就可以了

produces = "application/json; charset=UTF-8"

加上前:

springboot注解@RestController返回了xml格式数据_第1张图片

结果:

springboot注解@RestController返回了xml格式数据_第2张图片

 

 

加上后:

springboot注解@RestController返回了xml格式数据_第3张图片

结果:

springboot注解@RestController返回了xml格式数据_第4张图片

想要返回xml:

pom文件需要引用:

  
      com.fasterxml.jackson.dataformat
      jackson-dataformat-xml
      ${jackson.version}
  

方法上加上:

produces= "application/xml;charset=UTF-8"

你可能感兴趣的:(框架,web,java,json)