springboot框架接口返回类型JSONObject,无存入值。

spring-boot框架

@RestController
@EnableAutoConfiguration
@RequestMapping("/userCon")
public class DbController {
		private static Logger logger = LogManager.getLogger(DbController.class);
	    @RequestMapping(value = "/testMongoDB",produces="application/json;charset=UTF-8")
	    public JSONObject testMongoDB(){
	    	logger.debug("test");
	    	System.out.println("hello!");
	    	JSONObject jsonObject = new JSONObject();
	    	jsonObject.put("test", "test");
	    	System.out.println(jsonObject);
	    	return jsonObject;
	    }
}

springboot框架接口返回类型JSONObject,无存入值。_第1张图片

不太清楚这是为什么,哪位大佬能帮忙解释一下,拜托拜托

你可能感兴趣的:(springboot框架接口返回类型JSONObject,无存入值。)