首页>代码>基于SSM开发的网上订餐系统,包括前台页面和后台管理系统>/sourcecode/src/main/java/com/byh/biyesheji/controller/CategoryController.java
package com.byh.biyesheji.controller;

import com.byh.biyesheji.pojo.Category;
import com.byh.biyesheji.service.CategoryService;
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 java.util.List;

/**
 * 商品分类模块controller
 */
@Controller
@RequestMapping("/category")
public class CategoryController {

    @Autowired
    private CategoryService categoryService;

    @RequestMapping("/list")
    public String list(Model model){
        List<Category> list = categoryService.list();
        model.addAttribute("list",list);
        model.addAttribute("size",list.size());
        return "productmodule/category-list";
    }

    @RequestMapping("/addCategory")
    public String add(@RequestParam(value = "name")String name){
        Category category = new Category();
        category.setName(name);
        categoryService.save(category);
        return "productmodule/category-list";
    }

    @RequestMapping("/delCategory")
    public String del(@RequestParam(value = "id")int id){
        categoryService.del(id);
        return "redirect:list";
    }

    @RequestMapping("/editCategory")
    public String edit(@RequestParam(value = "id")int id,Model model){
        Category category = categoryService.get(id);
        model.addAttribute("category",category);
        return "productmodule/category-edit";
    }

    @RequestMapping("/updateCategory")
    public String update(Category category,Model model){
        categoryService.update(category);
        return "redirect:list";
    }
}
最近下载更多
charleswang  LV7 10月19日
柳咪华沙  LV7 6月28日
rain112  LV31 6月13日
qtingchh  LV3 5月3日
saaaaaa  LV14 4月16日
2131234536546  LV7 3月31日
123ggf  LV8 3月15日
pangzhihui  LV14 3月5日
nyb4613  LV8 3月5日
admin_z  LV22 2月4日
最近浏览更多
DXming 11月7日
暂无贡献等级
charleswang  LV7 10月19日
782325418 10月14日
暂无贡献等级
Peny_ZH  LV5 9月21日
柳咪华沙  LV7 6月28日
huangshi 6月28日
暂无贡献等级
dfgggf 6月26日
暂无贡献等级
暂无贡献等级
TY0165  LV20 6月18日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友