基于javaweb和mysql的ssm+maven饮食营养健康管理系统(JavaWeb MySQL JSP Bootstrap Servlet SSM SpringBoot)
·
基于javaweb和mysql的ssm+maven饮食营养健康管理系统(JavaWeb MySQL JSP Bootstrap Servlet SSM SpringBoot)
私信源码获取及调试交流
私信源码获取及调试交流
运行环境
Java≥8、MySQL≥5.7、Tomcat≥8
开发工具
eclipse/idea/myeclipse/sts等均可配置运行
技术框架
JavaBean MVC JSP SSM(Spring SpringMVC MyBatis) Maven MySQL CSS JavaScript Bootstrap.
适用
课程设计,大作业,毕业设计,项目练习,学习演示等
功能说明
登录、注册、退出、用户模块、公告模块、食材信息模块、食疗处方模块的增删改查管理
eclipse/MyEclipse运行:
idea运行:
/**
* 增加食疗处方
*
* @param response
* @param request
* @throws IOException
*/
@RequestMapping("shiliaoAdd")
public void add(Shiliao vo, HttpServletResponse response, HttpServletRequest request) throws IOException {
vo.setCreateBy(((com.demo.vo.User) request.getSession().getAttribute("loginUser")).getId());
//调用Service层的增加(insert)方法
shiliaoService.insert(vo);
this.redirectList(request, response);
}
/**
* 删除食疗处方
*
* @param response
* @param request
* @throws IOException
*/
@RequestMapping("shiliaoDelete")
public void delete(HttpServletResponse response, HttpServletRequest request) throws IOException {
Serializable id = request.getParameter("id");
shiliaoService.delete(Arrays.asList(id));
this.redirectList(request, response);
}
/**
* 编辑食疗处方
*
* @param response
* @param request
* @throws IOException
*/
@RequestMapping("shiliaoEdit")
public void edit(Shiliao vo, HttpServletResponse response, HttpServletRequest request) throws IOException {
shiliaoService.update(vo);
this.redirectList(request, response);
/**
* 增加公告
*
* @param response
* @param request
* @throws IOException
*/
@RequestMapping("noticeAdd")
public void add(Notice vo, HttpServletResponse response, HttpServletRequest request) throws IOException {
vo.setCreateBy(((com.demo.vo.User) request.getSession().getAttribute("loginUser")).getId());
//调用Service层的增加(insert)方法
noticeService.insert(vo);
this.redirectList(request, response);
}
/**
* 删除公告
*
* @param response
* @param request
* @throws IOException
*/
@RequestMapping("noticeDelete")
public void delete(HttpServletResponse response, HttpServletRequest request) throws IOException {
Serializable id = request.getParameter("id");
noticeService.delete(Arrays.asList(id));
this.redirectList(request, response);
}
/**
* 编辑公告
*
* @param response
* @param request
* @throws IOException
*/
@RequestMapping("noticeEdit")
public void edit(Notice vo, HttpServletResponse response, HttpServletRequest request) throws IOException {
noticeService.update(vo);
}
/**
* 获取食疗处方的详细信息(详情页面与编辑页面要显示该食疗处方的详情)并跳转回页面
*
* @param response
* @param request
* @throws IOException
*/
@RequestMapping({"shiliaoGet", "shiliaoEditPre"})
public void get(HttpServletResponse response, HttpServletRequest request) throws IOException {
Serializable id = request.getParameter("id");//取出主键id
Shiliao vo = shiliaoService.get(id);
request.getSession().setAttribute("vo", vo);
String to = request.getRequestURI().toLowerCase().contains("get") ? "info" : "edit";//判断是去详情显示页面还是编辑页面
response.sendRedirect("shiliao_" + to + ".jsp");
}
/**
* 根据条件查询食疗处方的列表并跳转回页面
*
* @param response
* @param request
* @throws IOException
*/
@RequestMapping("shiliaoList")
public void list(HttpServletResponse response, HttpServletRequest request) throws IOException {
this.redirectList(request, response);
}
/**
* 跳转到列表页面
*
* @param request
* @param response
*/
private void redirectList(HttpServletRequest request, HttpServletResponse response) throws IOException {
//查询列和关键字
String searchColumn = request.getParameter("searchColumn");
String keyword = request.getParameter("keyword");
Map<String, Object> params = new HashMap();//用来保存控制层传进来的参数(查询条件)
params.put("searchColumn", searchColumn);//要查询的列
params.put("keyword", keyword/*keyword != null ? new String(keyword.getBytes("ISO-8859-1"), "UTF-8") : null*/);//查询的关键字
//User loginUser = (User) request.getSession().getAttribute("loginUser");
//if (!"管理员".equals(loginUser.getUserType())) {
// params.put("createBy", loginUser.getId());
//}
Map<String, Object> map = shiliaoService.list(params);
request.getSession().setAttribute("list", map.get("list"));
Integer totalRecord = (Integer) map.get("totalCount");//根据查询条件取出对应的总记录数,用于分页
String pageNum = request.getParameter("pageNum");//封装分页参数
com.demo.util.PageBean<Object> pb = new com.demo.util.PageBean(Integer.valueOf(pageNum != null ? pageNum : "1"), totalRecord);
params.put("startIndex", pb.getStartIndex());
public class FoodController {
@Autowired
private FoodService foodService;
/**
* 增加食材信息
*
* @param response
* @param request
* @throws IOException
*/
@RequestMapping("foodAdd")
public void add(Food vo, HttpServletResponse response, HttpServletRequest request) throws IOException {
vo.setCreateBy(((com.demo.vo.User) request.getSession().getAttribute("loginUser")).getId());
//调用Service层的增加(insert)方法
foodService.insert(vo);
this.redirectList(request, response);
}
/**
* 删除食材信息
*
* @param response
* @param request
* @throws IOException
*/
@RequestMapping("foodDelete")
public void delete(HttpServletResponse response, HttpServletRequest request) throws IOException {
Serializable id = request.getParameter("id");
foodService.delete(Arrays.asList(id));
this.redirectList(request, response);
}
/**
* 编辑食材信息
*
* @param response
* @param request
* @throws IOException
*/
@RequestMapping("foodEdit")
public void edit(Food vo, HttpServletResponse response, HttpServletRequest request) throws IOException {
@Controller
@RequestMapping
public class UserController {
@Autowired
private UserService userService;
/**
* 增加用户
*
* @param response
* @param request
* @throws IOException
*/
@RequestMapping("userAdd")
public void add(User vo, HttpServletResponse response, HttpServletRequest request) throws IOException {
vo.setCreateBy(((com.demo.vo.User) request.getSession().getAttribute("loginUser")).getId());
//调用Service层的增加(insert)方法
userService.insert(vo);
this.redirectList(request, response);
}
/**
* 删除用户
*
* @param response
* @param request
* @throws IOException
*/
@RequestMapping("userDelete")
public void delete(HttpServletResponse response, HttpServletRequest request) throws IOException {
Serializable id = request.getParameter("id");
userService.delete(Arrays.asList(id));
this.redirectList(request, response);
}
/**
* 编辑用户
*
* @param response
* @param request
String searchColumn = request.getParameter("searchColumn");
String keyword = request.getParameter("keyword");
Map<String, Object> params = new HashMap();//用来保存控制层传进来的参数(查询条件)
params.put("searchColumn", searchColumn);//要查询的列
params.put("keyword", keyword/*keyword != null ? new String(keyword.getBytes("ISO-8859-1"), "UTF-8") : null*/);//查询的关键字
User loginUser = (User) request.getSession().getAttribute("loginUser");
if (!"管理员".equals(loginUser.getUserType())) {
params.put("id", loginUser.getId());
}
Map<String, Object> map = userService.list(params);
request.getSession().setAttribute("list", map.get("list"));
Integer totalRecord = (Integer) map.get("totalCount");//根据查询条件取出对应的总记录数,用于分页
String pageNum = request.getParameter("pageNum");//封装分页参数
com.demo.util.PageBean<Object> pb = new com.demo.util.PageBean(Integer.valueOf(pageNum != null ? pageNum : "1"), totalRecord);
params.put("startIndex", pb.getStartIndex());
params.put("pageSize", pb.getPageSize());
List list = (List) userService.list(params).get("list");//根据分页参数startIndex、pageSize查询出来的最终结果list
pb.setServlet("userList");
pb.setSearchColumn(searchColumn);
pb.setKeyword(keyword);
pb.setList(list);
request.getSession().setAttribute("pageBean", pb);
request.getSession().setAttribute("list", pb.getList());
response.sendRedirect("user_list.jsp");
}
}
@Autowired
private FoodService foodService;
/**
* 增加食材信息
*
* @param response
* @param request
* @throws IOException
*/
@RequestMapping("foodAdd")
public void add(Food vo, HttpServletResponse response, HttpServletRequest request) throws IOException {
vo.setCreateBy(((com.demo.vo.User) request.getSession().getAttribute("loginUser")).getId());
//调用Service层的增加(insert)方法
foodService.insert(vo);
this.redirectList(request, response);
}
/**
* 删除食材信息
*
* @param response
* @param request
* @throws IOException
*/
@RequestMapping("foodDelete")
public void delete(HttpServletResponse response, HttpServletRequest request) throws IOException {
Serializable id = request.getParameter("id");
foodService.delete(Arrays.asList(id));
this.redirectList(request, response);
}
/**
* 编辑食材信息
*
* @param response
* @param request
* @throws IOException
*/
@RequestMapping("foodEdit")
public void edit(Food vo, HttpServletResponse response, HttpServletRequest request) throws IOException {
foodService.update(vo);
this.redirectList(request, response);
}
@Controller
@RequestMapping
public class ShiliaoController {
@Autowired
private ShiliaoService shiliaoService;
/**
* 增加食疗处方
*
* @param response
* @param request
* @throws IOException
*/
@RequestMapping("shiliaoAdd")
public void add(Shiliao vo, HttpServletResponse response, HttpServletRequest request) throws IOException {
vo.setCreateBy(((com.demo.vo.User) request.getSession().getAttribute("loginUser")).getId());
//调用Service层的增加(insert)方法
shiliaoService.insert(vo);
this.redirectList(request, response);
}
/**
* 删除食疗处方
*
* @param response
* @param request
* @throws IOException
*/
@RequestMapping("shiliaoDelete")
public void delete(HttpServletResponse response, HttpServletRequest request) throws IOException {
Serializable id = request.getParameter("id");
shiliaoService.delete(Arrays.asList(id));
this.redirectList(request, response);
}
/**
* 编辑食疗处方
*
* @param response
* @param request
* @throws IOException
@RequestMapping("foodAdd")
public void add(Food vo, HttpServletResponse response, HttpServletRequest request) throws IOException {
vo.setCreateBy(((com.demo.vo.User) request.getSession().getAttribute("loginUser")).getId());
//调用Service层的增加(insert)方法
foodService.insert(vo);
this.redirectList(request, response);
}
/**
* 删除食材信息
*
* @param response
* @param request
* @throws IOException
*/
@RequestMapping("foodDelete")
public void delete(HttpServletResponse response, HttpServletRequest request) throws IOException {
Serializable id = request.getParameter("id");
foodService.delete(Arrays.asList(id));
this.redirectList(request, response);
}
/**
* 编辑食材信息
*
* @param response
* @param request
* @throws IOException
*/
@RequestMapping("foodEdit")
public void edit(Food vo, HttpServletResponse response, HttpServletRequest request) throws IOException {
foodService.update(vo);
this.redirectList(request, response);
}
/**
* 获取食材信息的详细信息(详情页面与编辑页面要显示该食材信息的详情)并跳转回页面
*
* @param response
* @param request
@Controller
public class AuthController extends HttpServlet {
@Autowired
private UserService userService;
@RequestMapping("authLogin")
public void login(HttpServletResponse response, HttpServletRequest request) throws IOException, ServletException {
String username = request.getParameter("username");
String password = request.getParameter("password");
String validationCode = request.getParameter("validationCode");
if (validationCode != null && !validationCode.equals(request.getSession().getAttribute("validationCode"))) {//验证码不通过
request.getSession().setAttribute("alert_msg", "错误:验证码不正确!");
request.getRequestDispatcher("login.jsp").forward(request, response);
return;
}
Map<String, Object> params = new HashMap();
List<User> list = (List<User>) userService.list(params).get("list");
for (User user : list) {
if (user.getUsername().equals(username) && user.getPassword().equals(password)) {//找到这个管理员了
request.getSession().setAttribute("loginUser", user);
request.getSession().setMaxInactiveInterval(Integer.MAX_VALUE);
request.getRequestDispatcher("userList").forward(request, response);
return;
String to = request.getRequestURI().toLowerCase().contains("get") ? "info" : "edit";//判断是去详情显示页面还是编辑页面
response.sendRedirect("user_" + to + ".jsp");
}
/**
* 根据条件查询用户的列表并跳转回页面
*
* @param response
* @param request
* @throws IOException
*/
@RequestMapping("userList")
public void list(HttpServletResponse response, HttpServletRequest request) throws IOException {
this.redirectList(request, response);
}
/**
* 跳转到列表页面
*
* @param request
* @param response
*/
private void redirectList(HttpServletRequest request, HttpServletResponse response) throws IOException {
//查询列和关键字
String searchColumn = request.getParameter("searchColumn");
String keyword = request.getParameter("keyword");
Map<String, Object> params = new HashMap();//用来保存控制层传进来的参数(查询条件)
params.put("searchColumn", searchColumn);//要查询的列
params.put("keyword", keyword/*keyword != null ? new String(keyword.getBytes("ISO-8859-1"), "UTF-8") : null*/);//查询的关键字
User loginUser = (User) request.getSession().getAttribute("loginUser");
if (!"管理员".equals(loginUser.getUserType())) {
params.put("id", loginUser.getId());
}
Map<String, Object> map = userService.list(params);
request.getSession().setAttribute("list", map.get("list"));
Integer totalRecord = (Integer) map.get("totalCount");//根据查询条件取出对应的总记录数,用于分页
String pageNum = request.getParameter("pageNum");//封装分页参数
com.demo.util.PageBean<Object> pb = new com.demo.util.PageBean(Integer.valueOf(pageNum != null ? pageNum : "1"), totalRecord);
params.put("startIndex", pb.getStartIndex());
params.put("pageSize", pb.getPageSize());
List list = (List) userService.list(params).get("list");//根据分页参数startIndex、pageSize查询出来的最终结果list
pb.setServlet("userList");
pb.setSearchColumn(searchColumn);
pb.setKeyword(keyword);
pb.setList(list);
* @throws IOException
*/
@RequestMapping("userAdd")
public void add(User vo, HttpServletResponse response, HttpServletRequest request) throws IOException {
vo.setCreateBy(((com.demo.vo.User) request.getSession().getAttribute("loginUser")).getId());
//调用Service层的增加(insert)方法
userService.insert(vo);
this.redirectList(request, response);
}
/**
* 删除用户
*
* @param response
* @param request
* @throws IOException
*/
@RequestMapping("userDelete")
public void delete(HttpServletResponse response, HttpServletRequest request) throws IOException {
Serializable id = request.getParameter("id");
userService.delete(Arrays.asList(id));
this.redirectList(request, response);
}
/**
* 编辑用户
*
* @param response
* @param request
* @throws IOException
*/
@RequestMapping("userEdit")
public void edit(User vo, HttpServletResponse response, HttpServletRequest request) throws IOException {
userService.update(vo);
this.redirectList(request, response);
}
/**
* 获取用户的详细信息(详情页面与编辑页面要显示该用户的详情)并跳转回页面
*
* @param response
* @param request
* @throws IOException
*/
@RequestMapping({"userGet", "userEditPre"})
public void get(HttpServletResponse response, HttpServletRequest request) throws IOException {
Serializable id = request.getParameter("id");//取出主键id
User vo = userService.get(id);
request.getSession().setAttribute("vo", vo);
String to = request.getRequestURI().toLowerCase().contains("get") ? "info" : "edit";//判断是去详情显示页面还是编辑页面
pb.setSearchColumn(searchColumn);
pb.setKeyword(keyword);
pb.setList(list);
request.getSession().setAttribute("pageBean", pb);
request.getSession().setAttribute("list", pb.getList());
response.sendRedirect("user_list.jsp");
}
}
@Controller
@RequestMapping
public class NoticeController {
@Autowired
private NoticeService noticeService;
/**
* 增加公告
*
* @param response
* @param request
* @throws IOException
*/
@RequestMapping("noticeAdd")
public void add(Notice vo, HttpServletResponse response, HttpServletRequest request) throws IOException {
response.sendRedirect("food_list.jsp");
}
}
@Controller
@RequestMapping
public class UserController {
@Autowired
private UserService userService;
/**
* 增加用户
*
* @param response
* @param request
* @throws IOException
*/
@RequestMapping("userAdd")
public void add(User vo, HttpServletResponse response, HttpServletRequest request) throws IOException {
vo.setCreateBy(((com.demo.vo.User) request.getSession().getAttribute("loginUser")).getId());
//调用Service层的增加(insert)方法
userService.insert(vo);
this.redirectList(request, response);
}
/**
* 删除用户
*
* @param response
request.getSession().setAttribute("alert_msg", "错误:验证码不正确!");
request.getRequestDispatcher("login.jsp").forward(request, response);
return;
}
Map<String, Object> params = new HashMap();
List<User> list = (List<User>) userService.list(params).get("list");
for (User user : list) {
if (user.getUsername().equals(username) && user.getPassword().equals(password)) {//找到这个管理员了
request.getSession().setAttribute("loginUser", user);
request.getSession().setMaxInactiveInterval(Integer.MAX_VALUE);
request.getRequestDispatcher("userList").forward(request, response);
return;
}
}
request.getSession().setAttribute("alert_msg", "错误:用户名或密码错误!");
request.getRequestDispatcher("login.jsp").forward(request, response);
}
@RequestMapping("authRegister")
public void register(HttpServletResponse response, HttpServletRequest request) throws IOException, ServletException {
String username = request.getParameter("username");
String password = request.getParameter("password");
System.out.println("username=" + username);
System.out.println("password=" + password);
Map<String, Object> params = new HashMap();
params.put("startIndex", 0);
params.put("pageSize", Long.MAX_VALUE);
List<User> list = (List<User>) userService.list(params).get("list");
for (User user : list) {
if (user.getUsername().equals(username) /*&& user.getPassword().equals(password)*/) {//说明该用户名已存在,必须换个用户名才能注册
request.getSession().setAttribute("alert_msg", "错误:用户名已存在!");
request.getRequestDispatcher("register.jsp").forward(request, response);
return;
}
}
User vo = new User();
foodService.delete(Arrays.asList(id));
this.redirectList(request, response);
}
/**
* 编辑食材信息
*
* @param response
* @param request
* @throws IOException
*/
@RequestMapping("foodEdit")
public void edit(Food vo, HttpServletResponse response, HttpServletRequest request) throws IOException {
foodService.update(vo);
this.redirectList(request, response);
}
/**
* 获取食材信息的详细信息(详情页面与编辑页面要显示该食材信息的详情)并跳转回页面
*
* @param response
* @param request
* @throws IOException
*/
@RequestMapping({"foodGet", "foodEditPre"})
public void get(HttpServletResponse response, HttpServletRequest request) throws IOException {
Serializable id = request.getParameter("id");//取出主键id
Food vo = foodService.get(id);
request.getSession().setAttribute("vo", vo);
String to = request.getRequestURI().toLowerCase().contains("get") ? "info" : "edit";//判断是去详情显示页面还是编辑页面
response.sendRedirect("food_" + to + ".jsp");
}
/**
* 根据条件查询食材信息的列表并跳转回页面
*
* @param response
* @param request
* @throws IOException
*/
@RequestMapping("foodList")
public void list(HttpServletResponse response, HttpServletRequest request) throws IOException {
this.redirectList(request, response);
}
/**
* 跳转到列表页面
this.redirectList(request, response);
}
/**
* 跳转到列表页面
*
* @param request
* @param response
*/
private void redirectList(HttpServletRequest request, HttpServletResponse response) throws IOException {
//查询列和关键字
String searchColumn = request.getParameter("searchColumn");
String keyword = request.getParameter("keyword");
Map<String, Object> params = new HashMap();//用来保存控制层传进来的参数(查询条件)
params.put("searchColumn", searchColumn);//要查询的列
params.put("keyword", keyword/*keyword != null ? new String(keyword.getBytes("ISO-8859-1"), "UTF-8") : null*/);//查询的关键字
//User loginUser = (User) request.getSession().getAttribute("loginUser");
//if (!"管理员".equals(loginUser.getUserType())) {
// params.put("createBy", loginUser.getId());
//}
Map<String, Object> map = shiliaoService.list(params);
request.getSession().setAttribute("list", map.get("list"));
Integer totalRecord = (Integer) map.get("totalCount");//根据查询条件取出对应的总记录数,用于分页
String pageNum = request.getParameter("pageNum");//封装分页参数
com.demo.util.PageBean<Object> pb = new com.demo.util.PageBean(Integer.valueOf(pageNum != null ? pageNum : "1"), totalRecord);
params.put("startIndex", pb.getStartIndex());
params.put("pageSize", pb.getPageSize());
List list = (List) shiliaoService.list(params).get("list");//根据分页参数startIndex、pageSize查询出来的最终结果list
pb.setServlet("shiliaoList");
pb.setSearchColumn(searchColumn);
pb.setKeyword(keyword);
pb.setList(list);
request.getSession().setAttribute("pageBean", pb);
request.getSession().setAttribute("list", pb.getList());
response.sendRedirect("shiliao_list.jsp");
}
}
@Controller
@RequestMapping
public class ShiliaoController {
@Autowired
private ShiliaoService shiliaoService;
/**
* 增加食疗处方
*
* @param response
* @param request
* @throws IOException
*/
@RequestMapping("shiliaoAdd")
public void add(Shiliao vo, HttpServletResponse response, HttpServletRequest request) throws IOException {
vo.setCreateBy(((com.demo.vo.User) request.getSession().getAttribute("loginUser")).getId());
//调用Service层的增加(insert)方法
shiliaoService.insert(vo);
this.redirectList(request, response);
}
/**
* 删除食疗处方
*
* @param response
* @param request
* @throws IOException











更多推荐
所有评论(0)