ssm框架get请求写法

@RequestMapping(value = "/123", method=RequestMethod.GET)
	@SuppressWarnings("all")
	private Object excleUserRecordsget(Integer userId,Integer startDate,Integer endDate,
														HttpServletRequest request,HttpServletResponse response) throws IOException {
		Map<String,Object> map = new HashMap<String,Object>();
		JSONObject jsonUser = new JSONObject();
		JSONObject jsonObject = new JSONObject();
		jsonObject.put("userId", userId);
		jsonObject.put("startDate", startDate);
		jsonObject.put("endDate", endDate);
上一篇:pytest-接口测试架构(基于python3.8


下一篇:Ajax使用示例