1. 程式人生 > >淘淘商城專案內容管理編輯

淘淘商城專案內容管理編輯

一、Dao層,用逆向生成的pojo

1.分析,jsp程式碼,其引數為id和name,url為/content/category/update

$.post("/content/category/update",{id:node.id,name:node.text});

2.Dao層,因為是單表查詢,直接使用逆向工程生成的pojo

二、.Service層

1.定義一個介面

TaotaoResult updateContentCategory(long id,String name);//更新

2.繼承

    @Override
    public TaotaoResult updateContentCategory(long id, String name) {
        TbContentCategory contentCategory = contentCategoryMapper.selectByPrimaryKey(id);
//因為只重新命名就行,只跟新一條就行
        contentCategory.setName(name);
        contentCategoryMapper.updateByPrimaryKey(contentCategory);
        return TaotaoResult.ok(contentCategory);
    }

三、controller層

//更新
@RequestMapping("/update")
@ResponseBody
public TaotaoResult updateContentCategory(Long id,String name){
    TaotaoResult result = contentCategoryService.updateContentCategory(id, name);
    return result;
}