Controller返回Json数据

@Controller
public class ItemController {
	@Autowired
	private ItemService itemService;
	@RequestMapping("/item/{itemId}")
	/*
	使用@ResponseBody 可以返回Json数据
	*/
	@ResponseBody
	public TbItem getItemById(@PathVariable Long itemId) {
		TbItem tbItem = itemService.getItemById(itemId);
		return tbItem;
	}
}

效果:
Controller返回Json数据_第1张图片

你可能感兴趣的:(JavaEE)