• 前端JS实现右击菜单与后端(mybatis返回刚插入数据的id)的操作


    Controller层

    @Controller
    public class ContentCategoryController {
    
        @Autowired
        private ContentCategoryService contentCategoryService;
    
        /**
         * 异步树的方式获取内容(大广告,小广告...)分类信息
         * @return
         */
        @RequestMapping("/content/category/list")
        @ResponseBody
        public List<EasyUITreeNode> getCategoryList(@RequestParam(value = "id",defaultValue = "0") Long parentId){
    
            return contentCategoryService.getCategoryList(parentId);
    
        }
    
        /**
         * 实现添加分类功能
         * @return 需要返回添加后的分类id,所以要对sql映射文件进行修改
         */
        @RequestMapping("/content/category/create")
        @ResponseBody
        public E3Result addCategory(TbContentCategory category){
    
            return contentCategoryService.addCategory(category);
    
        }
    
    }

    Service层

    @Service
    @Transactional
    public class ContentCategoryServiceImpl implements ContentCategoryService {
    
        @Autowired
        private TbContentCategoryMapper contentCategoryMapper;
    
        /**
         * 异步树的方式获取内容(大广告,小广告...)分类信息
         * @return
         */
        @Override
        public List<EasyUITreeNode> getCategoryList(Long parentId) {
    
            // 1.设置查询条件
            TbContentCategoryExample example = new TbContentCategoryExample();
            Criteria criteria = example.createCriteria();
            criteria.andParentIdEqualTo(parentId);
    
            // 2.执行查询
            List<TbContentCategory> categoryList = contentCategoryMapper.selectByExample(example);
    
            // 3.封装成EasyUITreeNode对象,返回
            List<EasyUITreeNode> easyUITreeNodes = new ArrayList<>();
    
            for (TbContentCategory category: categoryList) {
                // 创建一个EasyUITreeNode对象,添加属性
                EasyUITreeNode node = new EasyUITreeNode();
                node.setId(category.getId());
                node.setText(category.getName());
                node.setState(category.getIsParent()?"closed":"open");
                // 添加到arraylist中
                easyUITreeNodes.add(node);
            }
    
            return easyUITreeNodes;
        }
    
        @Override
        public E3Result addCategory(TbContentCategory category) {
    
            category.setStatus(1);   //可选值:1(正常),2(删除)
            category.setSortOrder(1);
            category.setIsParent(false);    // 是否为父节点
            category.setCreated(new Date());
            category.setUpdated(new Date());
    
            contentCategoryMapper.insert(category);
    
            // 在映射文件中设置返回主键后,他会直接封装到我们的对象中
            //<selectKey keyProperty="id" resultType="long" order="AFTER">
            //      select last_insert_id()
            //    </selectKey>
            return E3Result.ok(category);
        }
    }

    配置文件

    新service层的

  • 相关阅读:
    九个令人兴奋的新功能将与Java 9 展示两点
    自学前端开发 新版css时钟效果图
    自学前端,你要的学习资料到了~~~~~~
    Angularjs中ng-repeat与移动端滑动插件iScroll的冲突
    计蒜客学习记录
    明明的随机数
    模板题
    泉州一中复赛模拟
    快速幂模板
    NOIP2013
  • 原文地址:https://www.cnblogs.com/x54256/p/8641832.html
Copyright © 2020-2023  润新知