资源简介
SSM搭建的商城毕业设计附带论文与设计文档,导入后即可使用,JDK1.8,tomcat7
代码片段和文件信息
package com.shop.controller;
import java.io.File;
import java.util.Date;
import java.util.List;
import javax.servlet.http.HttpServletRequest;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.multipart.MultipartFile;
import com.shop.Utils.PageBean;
import com.shop.Utils.UUIDUtiils;
import com.shop.po.Adminuser;
import com.shop.po.Category;
import com.shop.po.Categorysecond;
import com.shop.po.Message;
import com.shop.po.Orders;
import com.shop.po.Product;
import com.shop.po.User;
import com.shop.service.CategorySecondService;
import com.shop.service.CategoryService;
import com.shop.service.MessageService;
import com.shop.service.OrderService;
import com.shop.service.ProductService;
import com.shop.service.UserService;
@Controller
public class AdminController {
@Autowired
private UserService userService;
@Autowired
public CategoryService categoryService;
@Autowired
public CategorySecondService categorySecondService;
@Autowired
public ProductService productService;
@Autowired
private OrderService orderService;
@Autowired
private MessageService messageService;
@RequestMapping(“/admin/admin_findAll“)
public String admin_findAll(Model modelHttpServletRequest request) throws Exception {
Adminuser adminuserLogin = (Adminuser) request.getSession().getAttribute(“adminuserLogin“);
if(adminuserLogin==null){
request.getSession().setAttribute(“message““对不起您还没有登录“);
return “admin/index“;
}
List userList = userService.admin_findAll();
model.addAttribute(“userList“ userList);
return “admin/user/list“;
}
@RequestMapping(“/admin/adminCategory_findAll“)
public String adminCategory_findAll(Model model HttpServletRequest request)
throws Exception {
Adminuser adminuserLogin = (Adminuser) request.getSession().getAttribute(“adminuserLogin“);
if(adminuserLogin==null){
request.getSession().setAttribute(“message““对不起您还没有登录“);
return “admin/index“;
}
List categoryList = categoryService.adminbFindCategory();
/*for (Category category : categoryList) {
System.out.println(category.getCname());
}*/
model.addAttribute(“categoryList“ categoryList);
return “admin/category/list“;
}
@RequestMapping(“/admin/adminCategory_add“)
public String adminCategory_add(Model modelHttpServletRequest request) throws Exception {
Adminuser adminuserLogin = (Adminuser) request.getSession().getAttribute(“adminuserLogin“);
if(adminuserLogin==null){
request.getSession().setAttribute(“message““对不起您还没有登录“);
return “admin/index“;
}
// List categoryList = categoryService.adminbFindCategory();
// model.addAttribute(“categoryList“ categoryList);
return
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 4691456 2018-04-06 18:55 SSM搭建的商城毕业设计附带论文与设计文档\10863网上购物系统(SSM).ppt
文件 112067 2019-01-09 15:57 SSM搭建的商城毕业设计附带论文与设计文档\1d35a1e4e047eb3b93164e5af8ba409.png
文件 195973 2019-01-09 15:58 SSM搭建的商城毕业设计附带论文与设计文档\7a6c1c728392662f9aedf9beb6d0c84.png
文件 49744 2019-01-09 15:56 SSM搭建的商城毕业设计附带论文与设计文档\8f2aaf2658ead7a9df9db311be2228e.png
文件 385981 2019-01-09 15:54 SSM搭建的商城毕业设计附带论文与设计文档\a44f16b46992268bef898ff50923578.png
文件 1058 2018-04-08 13:43 SSM搭建的商城毕业设计附带论文与设计文档\shop\.classpath
文件 904 2018-04-03 04:53 SSM搭建的商城毕业设计附带论文与设计文档\shop\.project
文件 500 2018-04-05 20:53 SSM搭建的商城毕业设计附带论文与设计文档\shop\.settings\.jsdtscope
文件 275 2018-04-10 08:53 SSM搭建的商城毕业设计附带论文与设计文档\shop\.settings\org.eclipse.core.resources.prefs
文件 52 2018-04-06 13:06 SSM搭建的商城毕业设计附带论文与设计文档\shop\.settings\org.eclipse.core.runtime.prefs
文件 364 2018-04-02 05:13 SSM搭建的商城毕业设计附带论文与设计文档\shop\.settings\org.eclipse.jdt.core.prefs
文件 538 2018-04-03 15:03 SSM搭建的商城毕业设计附带论文与设计文档\shop\.settings\org.eclipse.wst.common.component
文件 345 2018-04-07 04:52 SSM搭建的商城毕业设计附带论文与设计文档\shop\.settings\org.eclipse.wst.common.project.facet.core.xm
文件 153 2018-04-08 21:03 SSM搭建的商城毕业设计附带论文与设计文档\shop\.settings\org.eclipse.wst.jsdt.ui.prefs
文件 49 2018-04-02 18:45 SSM搭建的商城毕业设计附带论文与设计文档\shop\.settings\org.eclipse.wst.jsdt.ui.superType.container
文件 6 2018-04-05 15:54 SSM搭建的商城毕业设计附带论文与设计文档\shop\.settings\org.eclipse.wst.jsdt.ui.superType.name
文件 14355 2019-01-09 15:18 SSM搭建的商城毕业设计附带论文与设计文档\shop\build\classes\com\shop\controller\AdminController.class
文件 2151 2019-01-09 15:18 SSM搭建的商城毕业设计附带论文与设计文档\shop\build\classes\com\shop\controller\ajaxController.class
文件 3246 2019-01-09 15:18 SSM搭建的商城毕业设计附带论文与设计文档\shop\build\classes\com\shop\controller\cartController.class
文件 2224 2019-01-09 15:18 SSM搭建的商城毕业设计附带论文与设计文档\shop\build\classes\com\shop\controller\CategorySecondController.class
文件 3867 2019-01-09 15:18 SSM搭建的商城毕业设计附带论文与设计文档\shop\build\classes\com\shop\controller\checkImgController.class
文件 1068 2019-01-09 15:18 SSM搭建的商城毕业设计附带论文与设计文档\shop\build\classes\com\shop\controller\converters\DateConverters.class
文件 3569 2019-01-09 15:18 SSM搭建的商城毕业设计附带论文与设计文档\shop\build\classes\com\shop\controller\indexController.class
文件 4015 2019-01-09 15:18 SSM搭建的商城毕业设计附带论文与设计文档\shop\build\classes\com\shop\controller\loginController.class
文件 2943 2019-01-09 15:18 SSM搭建的商城毕业设计附带论文与设计文档\shop\build\classes\com\shop\controller\messageController.class
文件 5464 2019-01-09 15:18 SSM搭建的商城毕业设计附带论文与设计文档\shop\build\classes\com\shop\controller\orderController.class
文件 1291 2019-01-09 15:18 SSM搭建的商城毕业设计附带论文与设计文档\shop\build\classes\com\shop\controller\ProductController.class
文件 3967 2019-01-09 15:18 SSM搭建的商城毕业设计附带论文与设计文档\shop\build\classes\com\shop\controller\registController.class
文件 1954 2019-01-09 15:18 SSM搭建的商城毕业设计附带论文与设计文档\shop\build\classes\com\shop\exception\golbalException.class
文件 584 2019-01-09 15:18 SSM搭建的商城毕业设计附带论文与设计文档\shop\build\classes\com\shop\exception\zdyException.class
............此处省略1096个文件信息
相关资源
- ssm房屋租赁网.zip
- 百度API二次元动漫化
- 保护区、景区管理系统SSM毕设定制开
- 小区物业管理系统含数据库文件源代
- 软件工程课程设计项目:基于Maven+S
- 个人博客源码SSMSpringBoot、thymeleaf、
- Myeclipse讲师全面讲解pdf版
- ssm框架搭建教程
- JDK 8 中文版 api chm
- ssm小项目,实现对数据的增删改查及
- SSM基础适合小白
- 人脸识别 亲测可用
- Spring+SpringMVC+MyBatis问卷调查网框架
- avaWeb天下淘网络商城+项目源码
- 基于SSM的客户管理系统源码
- SSM整合框架
- ssm框架简单项目
- ssm+redis框架,亲测执行成功
- ssm单表增删改查
- crud(maven+ssm)可在多种ide上运行
- 北大青鸟 JBOA办公管理系统,完整源码
- 基于SSH框架的网上书店系统
- SSM整合图书商城项目+数据库
- SSHStruts2+Spring+Hibernate三大框架整合简
- SSM网上商城
- ssm的网上商城项目
- 宿舍管理系统
- 代码整洁之道中文版.pdf
- 北大青鸟-北大青鸟租房管理系统
- SSM框架注册登录
评论
共有 条评论