资源简介
java + mysq + jspl 的自行车租赁管理系统 实现租赁管理的功能
代码片段和文件信息
package com.bike.controller;
import com.bike.model.Bike;
import com.bike.model.Person;
import com.bike.service.BikeService;
import com.bike.service.PersonService;
import com.bike.util.BikeConstants;
import com.bike.util.JsonResult;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.portlet.ModelAndView;
import javax.servlet.http.HttpSession;
/**
* 处理用户请求控制器
* */
@Controller
@RequestMapping(“/bike“)
public class BikeController {
@Autowired
@Qualifier(“bikeService“)
private BikeService bikeService;
@RequestMapping(value = “/borrowBike“method = RequestMethod.GET)
public JsonResult borrowBike(int id){
Bike bike=bikeService.getBikeById(id);
bikeService.updateBikeStatus(id0);//0:状态为借
return JsonResult.ok();
}
@RequestMapping(value = “/returnBike“method = RequestMethod.GET)
public JsonResult returnBike(int id){
Bike bike=bikeService.getBikeById(id);
bikeService.updateBikeStatus(id1);////0:状态为还
return JsonResult.ok();
}
@RequestMapping(value = “/updateBike“method = RequestMethod.GET)
public JsonResult updateBike(int id){
Bike bike=bikeService.getBikeById(id);
bikeService.updateBike(bike);
return JsonResult.ok();
}
@RequestMapping(value = “/deleteBike“method = RequestMethod.GET)
public JsonResult deleteBike(int id){
bikeService.deleteBike(id);
return JsonResult.ok();
}
}
相关资源
- JAVAWEB_项目开发_网上订餐系统
- 九宫格日记网
- javaWeb博客系统
- 基于JavaEE的商城系统
- javaweb编程体验BBS论坛源代码
- 基于JavaWeb的博客网站的设计与实现论
- 基于javaweb人脸识别
- face++ 人脸识别javaweb完整工程(有fa
- Javaweb班级通讯录
- 清爽夏日九宫格日志网源码
- 网上购物系统+毕业设计(完整版)
- javaweb邮件管理系统
- Javaweb大作业公司任务管理系统
- JavaWeb 增删改查204673
- javaweb 实现的图书管理系统
- javaWeb投票管理系统源码
- 网上购物系统jsp+sqlserver2005+javaWeb+Se
- JavaWeb网上书店系统实践篇.zip
- javaweb网上购物网站后台+前端.rar
- 网上书店系统的设计与实现项目源码
- javaweb手机短信验证
- JavaWeb在线考试系统200891
- Javaweb学生宿舍管理系统
- Javaweb课设||毕业设计点餐系统前后端
- 医院门诊预约系统JavaWeb设计
- JAVAWeb聊天室184508
- javaweb 实现的图书管理系统完整版
- javaweb基于mvc的疫情社区管理系统
- javaweb仓库管理系统进销存管理系统
- 学生信息管理系统JavaWeb+MySQL
评论
共有 条评论