在线观看不卡亚洲电影_亚洲妓女99综合网_91青青青亚洲娱乐在线观看_日韩无码高清综合久久

鍍金池/ 問答/Java/ spring mvc 接收post請求,json數(shù)據(jù)只有一個參數(shù){a:xxx},

spring mvc 接收post請求,json數(shù)據(jù)只有一個參數(shù){a:xxx},不使用Bean,Map,該如何接收?

spring mvc 接收post請求,json數(shù)據(jù)只有一個參數(shù){a:xxx},不使用Bean,Map,該如何接收?
想要類似的效果:

@PostMapping("xxx")
public xxx method(String a) {}
回答
編輯回答
綰青絲

使用@RequestBody

@PostMapping("xxx")
public xxx method(@RequestBody String a) {}
2018年6月28日 08:12