package com.hao.controller;
import java.util.List;
import java.util.Map;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.servlet.ModelAndView;
import com.hao.mappers.StudentMapper;
@Controller
public class StudentController {
@Autowired
private StudentMapper studentMapper;
@RequestMapping("list")
public ModelAndView list(String mohu) {
System.out.println(mohu);
if(mohu==null) {
mohu="";
}
ModelAndView mv = new ModelAndView();
List<Map<String, Object>> studentList = studentMapper.findStudentList(mohu);
mv.addObject("studentList", studentList);
mv.setViewName("list");
return mv;
}
}
哲学家们只是用不同的方式解释世界,而问题在于改变世界。
《关于费尔巴哈的提纲》
——马克思

被折叠的 条评论
为什么被折叠?



