python222网站实战(SpringBoot+SpringSecurity+MybatisPlus+thymeleaf+layui)-系统属性管理实现

锋哥原创的Springboot+Layui python222网站实战:

python222网站实战课程视频教程(SpringBoot+Python爬虫实战) ( 火爆连载更新中... )_哔哩哔哩_bilibilipython222网站实战课程视频教程(SpringBoot+Python爬虫实战) ( 火爆连载更新中... )共计23条视频,包括:python222网站实战课程视频教程(SpringBoot+Python爬虫实战) ( 火爆连载更新中... )、第2讲 架构搭建实现、第3讲 页面系统属性动态化设计实现等,UP主更多精彩视频,请关注UP账号。icon-default.png?t=N7T8https://www.bilibili.com/video/BV1yX4y1a7qM/python222网站实战(SpringBoot+SpringSecurity+MybatisPlus+thymeleaf+layui)-系统属性管理实现_第1张图片

新建PropertyAdminController 类

package com.python222.controller.admin;

import com.python222.entity.Property;
import com.python222.service.PropertyService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

import java.util.HashMap;
import java.util.List;
import java.util.Map;

/**
 * 管理员-系统属性控制器
 * @author Administrator
 *
 */
@RestController
@RequestMapping(value = "/admin/property")
public class PropertyAdminController {

   @Autowired
   private PropertyService propertyService;


   /**
    * 根据条件分页查询系统属性
    * @return
    * @throws Exception
    */
   @RequestMapping(value = "/list")
   public Map list()throws Exception{
      Map resultMap = new HashMap<>();
      List propertyList=propertyService.list();
      resultMap.put("code", 0);
      resultMap.put("data", propertyList);
      return resultMap;
   }

   /**
    *修改系统属性
    * @param property
    * @return
    */
   @RequestMapping("/update")
   public Map update(Property property)throws Exception{
      propertyService.updateById(property);
      Map resultMap = new HashMap<>();
      resultMap.put("success", true);
      return resultMap;
   }


   /**
    * 根据id查询系统属性实体
    * @param id
    * @return
    * @throws Exception
    */
   @RequestMapping("/findById")
   public Map findById(Integer id)throws Exception{
      Map resultMap = new HashMap<>();
      Property property=propertyService.getById(id);
      resultMap.put("property", property);
      resultMap.put("success", true);
      return resultMap;
   }
}

propertyManage.html




   
   系统属性管理
   
   











updateProperty.html





修改系统属性




系统属性Key:
系统属性值:
系统属性默认值:
系统属性描述:

你可能感兴趣的:(java,spring,boot,layui,java)