首页>代码>基于ssm+bootstrap+jquery的学生成绩管理系统>/student/src/main/java/com/student/controller/ClassesAjaxController.java
package com.student.controller;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.student.pojo.Classes;
import com.student.service.ClassesService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
* @author 是一个鸽子啊
* @date 2020/4/14
* @qq 364826415
*/
@RestController
public class ClassesAjaxController {
@Autowired
@Qualifier("classesServiceImpl")
private ClassesService classesService;
@RequestMapping("/queryClassesByCID")
private String queryClassesByCID(String classID) throws JsonProcessingException {
Classes classes = classesService.queryClassesByID(Integer.parseInt(classID));
ObjectMapper objectMapper = new ObjectMapper();
String val = objectMapper.writeValueAsString(classes);
return val;
}
}
最近下载更多
甜心冰淇淋 LV4
6月15日
陈小灏 LV18
2月22日
赵鑫cdsaljkdfsa LV11
2024年7月2日
TY0165 LV20
2024年6月22日
xzg123456 LV6
2024年6月19日
sunrandong LV4
2024年4月29日
微信网友_6927932988952576 LV12
2024年3月30日
咩咩咩咩咩 LV2
2024年2月28日
的撒基本大奖 LV8
2024年1月3日
苏柒 LV10
2023年12月15日
最近浏览更多
微信网友_7660121999364096
8月30日
暂无贡献等级
甜心冰淇淋 LV4
6月15日
人间蒸发 LV23
5月20日
shuaiqi
4月22日
暂无贡献等级
竹笋王老师说
3月23日
暂无贡献等级
微信网友_7289626841501696 LV4
3月6日
Ella0902
2024年12月18日
暂无贡献等级
571818771 LV3
2024年12月16日
aaaaaa1659
2024年12月8日
暂无贡献等级
微信网友_7284856520478720
2024年12月6日
暂无贡献等级

