100字范文,内容丰富有趣,生活中的好帮手!
100字范文 > 基于javaweb+springboot的医院预约挂号系统(java+Springboot+jsp+maven+layui+mysql)

基于javaweb+springboot的医院预约挂号系统(java+Springboot+jsp+maven+layui+mysql)

时间:2018-10-01 09:51:31

相关推荐

基于javaweb+springboot的医院预约挂号系统(java+Springboot+jsp+maven+layui+mysql)

基于javaweb+springboot的医院预约挂号系统(java+Springboot+jsp+maven+layui+mysql)

一、项目简述

功能包括:

用户分为患者,医生,管理员,患者可进行注册选择医生挂号,选择日期,选择号源,医生可进行接诊,管理员可对用户,医生信息的维护等等功能。

二、项目运行

环境配置:

Jdk1.8 + Tomcat8.5 + mysql + Eclispe(IntelliJ IDEA,Eclispe,MyEclispe,Sts都支持)

项目技术:

JSP +Spring + SpringBoot + MyBatis + html+ css + JavaScript + JQuery + Ajax + layui+ maven等等

适用

课程设计,大作业,毕业设计,项目练习,学习演示等

* 登录控制层*/@Controller@RequestMapping("/login")public class LoginController {@Autowiredprivate AdminService adminService;@Autowiredprivate DoctorService doctorService;@Autowiredprivate SectionService sectionService;@Autowiredprivate PatientService patientService;@Value("${fileUrl}") //在配置文件中获取文件的保存路径private String filePath;

* 管理员修改密码界面* @return*//*@RequestMapping("/adminUptatePage")public String adminUptatePage(Model model) {return "behind/admin/adminUptate";}*//*** 商户修改密码界面* @return*//*@RequestMapping("/merchantUptate")public String merchantUptate(Model model) {return "behind/merchant/merchantUptate";}*/}后端管理员控制层:/*** 后端管理员控制层*/

*/@RequestMapping(value = "/patientSave")public String patientSave(Patient patient) {patientService.insertSelective(patient);return "loginByPatient";}/*** 判断患者账号*/@RequestMapping("/panzhanghao")@ResponseBodypublic Map<String,String> panzhanghao(Model model, String zhanghao) {

Map<String, String> map = new HashMap<String, String>();PatientExample se = new PatientExample();PatientExample.Criteria criteria = se.createCriteria();criteria.andUsernameEqualTo(zhanghao);List<Patient> selectByExample = patientService.selectByExample(se);if(selectByExample.size() > 0){map.put("pan","err");}else{map.put("pan","ok");}

String filename = mufile.getOriginalFilename();//随机字符+原图片名用作新的图片名filename = random+".jpg";try {//文件保存路径 D:/xxxx/xxxx/File file = new File(filePath+filename);//判断父级文件是否存在if (!file.getParentFile().exists()) {file.getParentFile().mkdir();}mufile.transferTo(file);} catch (IllegalStateException | IOException e) {e.printStackTrace();}Doctor doctor = new Doctor(); if(id != -1){doctor.setId(id);doctor.setImg("/files/"+filename);doctorService.updateByPrimaryKeySelective(doctor);}else {//添加图片路径doctor.setImg("/files/"+filename);doctorService.insertSelective(doctor);System.out.println("id:"+doctor.getId());

@ResponseBodypublic List<Messages> doctorList(HttpServletRequest request) {Messagesmessages = new Messages();HttpSession session = request.getSession();Doctor dt = (Doctor) session.getAttribute("DOCTOR");messages.setDid(dt.getId());messages.setType(1);messages.setTime(new Date());PageInfo<Messages> pageInfo2 = messagesService.selectMessagesListDemo(messages,1,99);return pageInfo2.getList();} /***医生列表查询*/@RequestMapping(value = "/messagesQundingUptate")@ResponseBody

@Autowiredprivate MessagesService messagesService;private Integer size = 8;//每页显示数量/*** 修改信息* @param model* @return*/@RequestMapping("/tiaomessagelist")public String tiaomessagelist(@RequestBody List<Messages> mlist,Model model) {System.out.println(mlist.size());model.addAttribute("mlist",mlist);

@Autowiredprivate PatientService patientService;@Autowiredprivate MessagesService messagesService;/*** 医生列表*/@RequestMapping("/doctorList1")public String doctorList(Model model, Doctor doctor, @RequestParam(value="page",defaultValue="1")Integer page) {if(doctor == null) {doctor = new Doctor();}PageInfo<Doctor> pageInfo = doctorService.selectDoctorList(doctor,page,size);List<Doctor> list = pageInfo.getList();

/** * @throws ParseException */@RequestMapping(value = "/doctortouList")@ResponseBodypublic List<Doctor> doctortouList() {PageInfo<Doctor> pageInfo = doctorService.selectDoctorList(null,1,4);return pageInfo.getList();}

se.setPid(id);se.setType(2);List<Section> sectionlist = sectionService.selectByExample(se);return sectionlist;}/***科室下级查询*/@RequestMapping(value = "/patientPai")@ResponseBodypublic Integer patientPai(Integer id) {

public List<Doctor> doctortouList() {PageInfo<Doctor> pageInfo = doctorService.selectDoctorList(null,1,4);return pageInfo.getList();}/** * @throws ParseException */@RequestMapping(value = "/datatimeGua")@ResponseBodypublic Integer datatimeGua(@RequestParam("datetime")String datetime,@RequestParam("did")Integer did) throws ParseException {SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");Date parse = sdf.parse(datetime);Messages message = new Messages();message.setTime(parse);message.setDid(did);message.setType(-1);List<Messages> list = messagesService.selectMessages(message);return list.size();}

List<Admin> adminlist = adminService.selectAdmin(admin);if(adminlist.size() <= 0){model.addAttribute("message","密码错误");model.addAttribute("type",type);return "behind/login";}session.setAttribute("ADMIN",adminlist.get(0));return "redirect:/admin/index";}*//*** 退出登录* @param request* @return

String filename = mufile.getOriginalFilename();//随机字符+原图片名用作新的图片名filename = random+".jpg";try {//文件保存路径 D:/xxxx/xxxx/File file = new File(filePath+filename);//判断父级文件是否存在if (!file.getParentFile().exists()) {file.getParentFile().mkdir();}mufile.transferTo(file);} catch (IllegalStateException | IOException e) {e.printStackTrace();}Doctor doctor = new Doctor(); if(id != -1){

criteria.andPidEqualTo(pa.getPid());}}List<Patient> selectByExample = patientService.selectByExample(se);if(selectByExample.size() >0 ) {List<Messages> lmlist = messagesService.selectByExample(null);int j = 0 ;for (Messages me : lmlist) {if(me.getUid() == id) {return j;}

@ResponseBodypublic Section doctorIdList(Integer sid) {Section selectByPrimaryKey = sectionService.selectByPrimaryKey(sid);return selectByPrimaryKey;} /**

}/** * @throws ParseException */@RequestMapping(value = "/doctortouList")@ResponseBodypublic List<Doctor> doctortouList() {PageInfo<Doctor> pageInfo = doctorService.selectDoctorList(null,1,4);return pageInfo.getList();}/** * @throws ParseException */@RequestMapping(value = "/datatimeGua")

Doctor doctor = doctorService.selectByPrimaryKey(dt.getId());List<Section> sectionlist2 = null;model.addAttribute("doctor",doctor);//科室Section se = new Section();se.setType(1);List<Section> sectionlist = sectionService.selectByExample(se);model.addAttribute("sectionlist", sectionlist);//科室详情Section se1 = sectionService.selectByPrimaryKey(doctor.getSid());if(se1 != null) {Section section = new Section();section.setPid(se1.getPid());section.setType(2);sectionlist2 = sectionService.selectByExample(section);model.addAttribute("sectionlist2", sectionlist2);

@ResponseBodypublic Map<String,List<Section>> sectionList() {Map<String,List<Section>> map = new HashMap<String,List<Section>>();List<Section> sectionlist2 = null;Section se = new Section();se.setType(1);List<Section> sectionlist = sectionService.selectByExample(se);if(sectionlist.size() > 0 ) {//科室详情Section section = new Section();section.setPid(sectionlist.get(0).getId());section.setType(2);sectionlist2 = sectionService.selectByExample(section);}

}Messages me = new Messages();me.setType(1);me.setTime(new Date());for (int i = 0; i < list.size(); i++) {me.setDid(list.get(i).getDid());List<Messages> lin = messagesService.selectMessagesPai(me);list.get(i).setAge(lin.size());}return list;}/***预约信息列表* @throws ParseException */@RequestMapping(value = "/messagesList")@ResponseBody

if(id != null) {Messages messages = new Messages();messages.setId(id);messages.setType(3); //3表示预约成功messagesService.updateByPrimaryKeySelective(messages);Messages selectByPrimaryKey = messagesService.selectByPrimaryKey(id);Messages mes = new Messages();mes.setType(1);mes.setTime(new Date());mes.setDid(selectByPrimaryKey.getDid());List<Messages> list = messagesService.selectMessagesPai(mes);for (int i = 0; i < list.size(); i++) {list.get(i).setPai(i+1);messagesService.updateByPrimaryKeySelective(list.get(i));}

HttpSession session = request.getSession();Integer type = (Integer) session.getAttribute("type");if(type == null){type=1;}model.addAttribute("type",type);session.invalidate(); //session销毁return "behind/login";}*//*** 管理员修改密码界面* @return*//*@RequestMapping("/adminUptatePage")public String adminUptatePage(Model model) {return "behind/admin/adminUptate";}*//**

mess.setDid(dt.getId());mess.setUsername(name);List<Messages> selectMessages = messagesService.selectMessagesTWO(mess);model.addAttribute("messagesList", selectMessages);}return "doctor/messageTime";}/*** 修改医生信息*/@RequestMapping("/admindoctorUptate")public String adminUptatePassword(Doctor doctor,Model model) {if(doctor != null && doctor.getId() != null) {if(doctor.getSid() != null) {Section section = sectionService.selectByPrimaryKey(doctor.getSid());doctor.setSid(section.getId());

for (int i = 0; i < list.size(); i++) {if(list.get(i).getType() == 1) {me.setDid(list.get(i).getDid());List<Messages> lin = messagesService.selectMessagesPai(me);list.get(i).setAge(lin.size()); }}return list;}

return "redirect:/login/index";}messages.setType(type);//底层数据PageInfo<Messages> pageInfo = messagesService.selectMessagesList(messages,page,size);//工作区数据messages.setTime(new Date());List<Messages> list = messagesService.selectMessagesPai(messages);model.addAttribute("mlist",list);model.addAttribute("messagesList",pageInfo.getList());model.addAttribute("pageInfo",pageInfo);

public Map<String,String> panzhanghao(Model model, String zhanghao) {Map<String, String> map = new HashMap<String, String>();PatientExample se = new PatientExample();PatientExample.Criteria criteria = se.createCriteria();criteria.andUsernameEqualTo(zhanghao);List<Patient> selectByExample = patientService.selectByExample(se);if(selectByExample.size() > 0){map.put("pan","err");}else{map.put("pan","ok");}return map;}/*** 患者注册界面*/@RequestMapping("/patientAddPage")public String patientAddPage(Model model) {return "patientRegister";}/**

*/@RequestMapping("/messageList")public String doctorList(Model model, Messages messages, @RequestParam(value="page",defaultValue="1")Integer page,Integer type,HttpServletRequest request) {if(messages == null) {messages = new Messages();}HttpSession session = request.getSession();Doctor dt = (Doctor) session.getAttribute("DOCTOR");if(dt != null){messages.setDid(dt.getId());}else{return "redirect:/login/index";}messages.setType(type);//底层数据

}patientService.insertSelective(patient);return "ok";}return "err";} /***登录验证* @throws ParseException */@RequestMapping(value = "/userLoginView")@ResponseBodypublic String userLoginView(HttpServletRequest request) throws ParseException {

/*** 登陆验证* @return*/@RequestMapping("/verificatio")public String verificatio(String username, String password, Integer type, HttpServletRequest request,Model model) {HttpSession session = request.getSession();session.setAttribute("type",type);//类型为1是医院 2是管理员if(type == 1){Doctor doctor = new Doctor();

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。