Browse Source

去除冗余接口

master
Augcl 11 months ago
parent
commit
a29c25dc89
4 changed files with 200 additions and 146 deletions
  1. +126
    -115
      jeecg-module-officialWebsit/src/main/java/org/jeecg/modules/demo/officialWebsite/api/frontController/FrontController.java
  2. +28
    -1
      jeecg-module-officialWebsit/src/main/java/org/jeecg/modules/demo/officialWebsite/api/mapper/xml/ApiOwClassificationMapper.xml
  3. +40
    -26
      jeecg-module-officialWebsit/src/main/java/org/jeecg/modules/demo/officialWebsite/api/utils/Utils.java
  4. +6
    -4
      jeecg-module-system/jeecg-system-start/src/main/resources/application-dev.yml

+ 126
- 115
jeecg-module-officialWebsit/src/main/java/org/jeecg/modules/demo/officialWebsite/api/frontController/FrontController.java View File

@ -31,136 +31,147 @@ public class FrontController {
/*******************************************************************************************************************/ /*******************************************************************************************************************/
/***********************************************图片部分************************************************************/ /***********************************************图片部分************************************************************/
//图片信息查询公共方法 //图片信息查询公共方法
public List<ApiOwImageBean> queryImageUtil(String classificationId, int pageNo, int pageSize){
@AutoLog(value = "图片信息查询公共方法")
@ApiOperation(value = "图片信息查询公共方法", notes = "参数说明:classificationId-父级图片编号(首页_轮播图), pageNo-页码, pageSize-页面数据条数范围;" +
"接口可供调用处:首页_轮播图、首页-定制软件开发、首页-软件产品开发、关于我们-轮播图、关于我们-信息展示、" +
"服务项目-轮播图、服务项目-信息展示、联系我们-加入我们的团队")
@RequestMapping(value = "/queryImage", method = {RequestMethod.GET})
public List<ApiOwImageBean> queryImage(String classificationId, int pageNo, int pageSize){
ApiOwImageBean apiOwImageBean = new ApiOwImageBean(); ApiOwImageBean apiOwImageBean = new ApiOwImageBean();
int count = apiOwImageService.queryAll(apiOwImageBean).size(); int count = apiOwImageService.queryAll(apiOwImageBean).size();
ApiOwImageBean apiOwImageBean1 = Utils.split(apiOwImageBean, classificationId, count,pageNo,pageSize); ApiOwImageBean apiOwImageBean1 = Utils.split(apiOwImageBean, classificationId, count,pageNo,pageSize);
return apiOwImageService.querySplit(apiOwImageBean1); return apiOwImageService.querySplit(apiOwImageBean1);
} }
@AutoLog(value = "首页-轮播图")
@ApiOperation(value = "首页-轮播图", notes = "classificationId-父级图片编号(首页_轮播图); pageNo-页码; pageSize-页面数据条数范围")
@RequestMapping(value = "/queryFirstPageBanner", method = {RequestMethod.GET})
public List<ApiOwImageBean> queryFirstPageBanner(String classificationId, int pageNo, int pageSize){
return this.queryImageUtil(classificationId,pageNo,pageSize);
}
@AutoLog(value = "首页-定制软件开发")
@ApiOperation(value = "首页-定制软件开发", notes = "classificationId-父级图片编号(定制软件开发); pageNo-页码; pageSize-页面数据条数范围")
@RequestMapping(value = "/queryCustomieSoftware", method = {RequestMethod.GET})
public List<ApiOwImageBean> queryCustomieSoftware(String classificationId, int pageNo, int pageSize){
return this.queryImageUtil(classificationId,pageNo,pageSize);
}
@AutoLog(value = "首页-软件产品开发")
@ApiOperation(value = "首页-软件产品开发", notes = "classificationId-父级图片编号(软件产品开发); pageNo-页码; pageSize-页面数据条数范围")
@RequestMapping(value = "/querySoftware", method = {RequestMethod.GET})
public List<ApiOwImageBean> querySoftware(String classificationId,int pageNo, int pageSize){
return this.queryImageUtil(classificationId,pageNo,pageSize);
}
@AutoLog(value = "关于我们-轮播图")
@ApiOperation(value = "关于我们-轮播图", notes = "classificationId-父级图片编号(关于我们_轮播图); pageNo-页码; pageSize-页面数据条数范围")
@RequestMapping(value = "/queryAboutUsBanner", method = {RequestMethod.GET})
public List<ApiOwImageBean> queryAboutUsBanner(String classificationId,int pageNo, int pageSize){
return this.queryImageUtil(classificationId,pageNo,pageSize);
}
@AutoLog(value = "关于我们-信息展示")
@ApiOperation(value = "关于我们-信息展示", notes = "classificationId-父级图片编号(关于我们_信息展示); pageNo-页码; pageSize-页面数据条数范围")
@RequestMapping(value = "/queryAboutUsInfo", method = {RequestMethod.GET})
public List<ApiOwImageBean> query6(String classificationId,int pageNo, int pageSize){
return this.queryImageUtil(classificationId,pageNo,pageSize);
}
@AutoLog(value = "服务项目-轮播图")
@ApiOperation(value = "服务项目-轮播图", notes = "classificationId-父级图片编号(服务项目_轮播图); pageNo-页码; pageSize-页面数据条数范围")
@RequestMapping(value = "/queryServeBanner", method = {RequestMethod.GET})
public List<ApiOwImageBean> queryServeBanner(String classificationId,int pageNo, int pageSize){
return this.queryImageUtil(classificationId,pageNo,pageSize);
}
@AutoLog(value = "服务项目-信息展示")
@ApiOperation(value = "服务项目-信息展示", notes = "classificationId-父级图片编号(服务项目_信息展示); pageNo-页码; pageSize-页面数据条数范围")
@RequestMapping(value = "/queryServeInfo", method = {RequestMethod.GET})
public List<ApiOwImageBean> query8(String classificationId,int pageNo, int pageSize){
return this.queryImageUtil(classificationId,pageNo,pageSize);
}
@AutoLog(value = "联系我们-加入我们的团队")
@ApiOperation(value = "联系我们-加入我们的团队", notes = "classificationId-父级编号(联系我们-加入我们的团队); pageNo-页码; pageSize-页面数据条数范围")
@RequestMapping(value = "/queryJoinUs", method = {RequestMethod.GET})
public List<ApiOwImageBean> queryJoinUs(String classificationId,int pageNo, int pageSize){
return this.queryImageUtil(classificationId,pageNo,pageSize);
}
// @AutoLog(value = "首页-轮播图")
// @ApiOperation(value = "首页-轮播图", notes = "classificationId-父级图片编号(首页_轮播图); pageNo-页码; pageSize-页面数据条数范围")
// @RequestMapping(value = "/queryFirstPageBanner", method = {RequestMethod.GET})
// public List<ApiOwImageBean> queryFirstPageBanner(String classificationId, int pageNo, int pageSize){
// return this.queryImageUtil(classificationId,pageNo,pageSize);
// }
//
// @AutoLog(value = "首页-定制软件开发")
// @ApiOperation(value = "首页-定制软件开发", notes = "classificationId-父级图片编号(定制软件开发); pageNo-页码; pageSize-页面数据条数范围")
// @RequestMapping(value = "/queryCustomieSoftware", method = {RequestMethod.GET})
// public List<ApiOwImageBean> queryCustomieSoftware(String classificationId, int pageNo, int pageSize){
// return this.queryImageUtil(classificationId,pageNo,pageSize);
// }
//
// @AutoLog(value = "首页-软件产品开发")
// @ApiOperation(value = "首页-软件产品开发", notes = "classificationId-父级图片编号(软件产品开发); pageNo-页码; pageSize-页面数据条数范围")
// @RequestMapping(value = "/querySoftware", method = {RequestMethod.GET})
// public List<ApiOwImageBean> querySoftware(String classificationId,int pageNo, int pageSize){
// return this.queryImageUtil(classificationId,pageNo,pageSize);
// }
//
// @AutoLog(value = "关于我们-轮播图")
// @ApiOperation(value = "关于我们-轮播图", notes = "classificationId-父级图片编号(关于我们_轮播图); pageNo-页码; pageSize-页面数据条数范围")
// @RequestMapping(value = "/queryAboutUsBanner", method = {RequestMethod.GET})
// public List<ApiOwImageBean> queryAboutUsBanner(String classificationId,int pageNo, int pageSize){
// return this.queryImageUtil(classificationId,pageNo,pageSize);
// }
//
// @AutoLog(value = "关于我们-信息展示")
// @ApiOperation(value = "关于我们-信息展示", notes = "classificationId-父级图片编号(关于我们_信息展示); pageNo-页码; pageSize-页面数据条数范围")
// @RequestMapping(value = "/queryAboutUsInfo", method = {RequestMethod.GET})
// public List<ApiOwImageBean> query6(String classificationId,int pageNo, int pageSize){
// return this.queryImageUtil(classificationId,pageNo,pageSize);
// }
//
// @AutoLog(value = "服务项目-轮播图")
// @ApiOperation(value = "服务项目-轮播图", notes = "classificationId-父级图片编号(服务项目_轮播图); pageNo-页码; pageSize-页面数据条数范围")
// @RequestMapping(value = "/queryServeBanner", method = {RequestMethod.GET})
// public List<ApiOwImageBean> queryServeBanner(String classificationId,int pageNo, int pageSize){
// return this.queryImageUtil(classificationId,pageNo,pageSize);
// }
//
// @AutoLog(value = "服务项目-信息展示")
// @ApiOperation(value = "服务项目-信息展示", notes = "classificationId-父级图片编号(服务项目_信息展示); pageNo-页码; pageSize-页面数据条数范围")
// @RequestMapping(value = "/queryServeInfo", method = {RequestMethod.GET})
// public List<ApiOwImageBean> query8(String classificationId,int pageNo, int pageSize){
// return this.queryImageUtil(classificationId,pageNo,pageSize);
// }
//
// @AutoLog(value = "联系我们-加入我们的团队")
// @ApiOperation(value = "联系我们-加入我们的团队", notes = "classificationId-父级编号(联系我们-加入我们的团队); pageNo-页码; pageSize-页面数据条数范围")
// @RequestMapping(value = "/queryJoinUs", method = {RequestMethod.GET})
// public List<ApiOwImageBean> queryJoinUs(String classificationId,int pageNo, int pageSize){
// return this.queryImageUtil(classificationId,pageNo,pageSize);
// }
/*******************************************************************************************************************/ /*******************************************************************************************************************/
/***********************************************程序部分************************************************************/ /***********************************************程序部分************************************************************/
//程序信息查询公共方法 //程序信息查询公共方法
public List<ApiOwProductBean> queryProgramUtil(String classificationId, int pageNo, int pageSize){
@AutoLog(value = "软件信息查询公共方法")
@ApiOperation(value = "软件信息查询公共方法", notes = "参数说明:classificationId-父级图片编号(首页_轮播图), pageNo-页码, pageSize-页面数据条数范围;" +
"接口可供调用处:首页-案例展示、案例展示-系统平台、案例展示-APP、案例展示-电商平台、案例展示-小程序、案例展示-网站建设")
@RequestMapping(value = "/queryProgram", method = {RequestMethod.GET})
public List<ApiOwProductBean> queryProgram(String classificationId, int pageNo, int pageSize){
ApiOwProductBean apiOwProductBean = new ApiOwProductBean(); ApiOwProductBean apiOwProductBean = new ApiOwProductBean();
int count = apiOwProductService.queryAll(apiOwProductBean).size(); int count = apiOwProductService.queryAll(apiOwProductBean).size();
ApiOwProductBean apiOwProductBean1 = Utils.split(apiOwProductBean, classificationId,count,pageNo,pageSize); ApiOwProductBean apiOwProductBean1 = Utils.split(apiOwProductBean, classificationId,count,pageNo,pageSize);
return apiOwProductService.querySplit(apiOwProductBean1); return apiOwProductService.querySplit(apiOwProductBean1);
} }
public List<ApiOwProductBean> queryProgramUtil1(String classificationId,String isHot, int pageNo, int pageSize){
HashMap<String,Object> map = new HashMap<>();
ApiOwProductBean apiOwProductBean = new ApiOwProductBean();
//查询数据总量
int count = apiOwProductService.queryAll(apiOwProductBean).size();
//将参数打包
map.put("classificationId",classificationId);
map.put("isHot",isHot);
map.put("pageNo",pageNo);
map.put("pageSize",pageSize);
map.put("count",count);
map.put("apiOwProductBean",apiOwProductBean);
ApiOwProductBean apiOwProductBean1 = Utils.split1(map);
return apiOwProductService.querySplit(apiOwProductBean1);
}
@AutoLog(value = "首页-案例展示")
@ApiOperation(value = "首页-案例展示", notes = "classificationId-父级图片编号(案例展示); pageNo-页码; pageSize-页面数据条数范围")
@RequestMapping(value = "/queryExample", method = {RequestMethod.GET})
public List<ApiOwProductBean> queryExample(String classificationId, String isHot, int pageNo, int pageSize){
return this.queryProgramUtil1(classificationId,isHot,pageNo,pageSize);
}
@AutoLog(value = "案例展示-系统平台")
@ApiOperation(value = "案例展示-系统平台", notes = "classificationId-父级产品编号(案例展示_系统平台); pageNo-页码; pageSize-页面数据条数范围")
@RequestMapping(value = "/queryExampleSystem", method = {RequestMethod.GET})
public List<ApiOwProductBean> queryExampleSystem(String classificationId,int pageNo, int pageSize){
return this.queryProgramUtil(classificationId,pageNo,pageSize);
}
@AutoLog(value = "案例展示-APP")
@ApiOperation(value = "案例展示-APP", notes = "classificationId-父级产品编号(案例展示_APP); pageNo-页码; pageSize-页面数据条数范围")
@RequestMapping(value = "/queryExampleApp", method = {RequestMethod.GET})
public List<ApiOwProductBean> queryExampleApp(String classificationId,int pageNo, int pageSize){
return this.queryProgramUtil(classificationId,pageNo,pageSize);
}
@AutoLog(value = "案例展示-电商平台")
@ApiOperation(value = "案例展示-电商平台", notes = "classificationId-父级产品编号(案例展示_电商平台); pageNo-页码; pageSize-页面数据条数范围")
@RequestMapping(value = "/queryExampleRetailer", method = {RequestMethod.GET})
public List<ApiOwProductBean> queryExampleRetailer(String classificationId,int pageNo, int pageSize){
return this.queryProgramUtil(classificationId,pageNo,pageSize);
}
@AutoLog(value = "案例展示-小程序")
@ApiOperation(value = "案例展示-小程序", notes = "classificationId-父级产品编号(案例展示_小程序); pageNo-页码; pageSize-页面数据条数范围")
@RequestMapping(value = "/queryExampleProgram", method = {RequestMethod.GET})
public List<ApiOwProductBean> queryExampleProgram(String classificationId,int pageNo, int pageSize){
return this.queryProgramUtil(classificationId,pageNo,pageSize);
}
@AutoLog(value = "案例展示-网站建设")
@ApiOperation(value = "案例展示-网站建设", notes = "classificationId-父级产品编号(案例展示_网站建设); pageNo-页码; pageSize-页面数据条数范围")
@RequestMapping(value = "/queryExampleWebsite", method = {RequestMethod.GET})
public List<ApiOwProductBean> queryExampleWebsite(String classificationId,int pageNo, int pageSize){
return this.queryProgramUtil(classificationId,pageNo,pageSize);
}
// public List<ApiOwProductBean> queryProgramUtil1(HashMap<String,Object> map){
// ApiOwProductBean apiOwProductBean = new ApiOwProductBean();
// //查询数据总量
// int count = apiOwProductService.queryAll(apiOwProductBean).size();
// //将参数打包
// map.put("classificationId",classificationId);
// map.put("isHot",isHot);
// map.put("pageNo",pageNo);
// map.put("pageSize",pageSize);
// map.put("count",count);
// map.put("apiOwProductBean",apiOwProductBean);
// ApiOwProductBean apiOwProductBean1 = Utils.split1(map);
// return apiOwProductService.querySplit(apiOwProductBean1);
// }
/**************************************************************************************************/
// @AutoLog(value = "首页-案例展示")
// @ApiOperation(value = "首页-案例展示", notes = "classificationId-父级图片编号(案例展示); pageNo-页码; pageSize-页面数据条数范围")
// @RequestMapping(value = "/queryExample", method = {RequestMethod.GET})
// public List<ApiOwProductBean> queryExample(String classificationId, String isHot, int pageNo, int pageSize){
// return this.queryProgramUtil(classificationId,pageNo,pageSize);
// }
//
// @AutoLog(value = "案例展示-系统平台")
// @ApiOperation(value = "案例展示-系统平台", notes = "classificationId-父级产品编号(案例展示_系统平台); pageNo-页码; pageSize-页面数据条数范围")
// @RequestMapping(value = "/queryExampleSystem", method = {RequestMethod.GET})
// public List<ApiOwProductBean> queryExampleSystem(String classificationId,int pageNo, int pageSize){
// return this.queryProgramUtil(classificationId,pageNo,pageSize);
// }
//
// @AutoLog(value = "案例展示-APP")
// @ApiOperation(value = "案例展示-APP", notes = "classificationId-父级产品编号(案例展示_APP); pageNo-页码; pageSize-页面数据条数范围")
// @RequestMapping(value = "/queryExampleApp", method = {RequestMethod.GET})
// public List<ApiOwProductBean> queryExampleApp(String classificationId,int pageNo, int pageSize){
// return this.queryProgramUtil(classificationId,pageNo,pageSize);
// }
//
// @AutoLog(value = "案例展示-电商平台")
// @ApiOperation(value = "案例展示-电商平台", notes = "classificationId-父级产品编号(案例展示_电商平台); pageNo-页码; pageSize-页面数据条数范围")
// @RequestMapping(value = "/queryExampleRetailer", method = {RequestMethod.GET})
// public List<ApiOwProductBean> queryExampleRetailer(String classificationId,int pageNo, int pageSize){
// return this.queryProgramUtil(classificationId,pageNo,pageSize);
// }
//
// @AutoLog(value = "案例展示-小程序")
// @ApiOperation(value = "案例展示-小程序", notes = "classificationId-父级产品编号(案例展示_小程序); pageNo-页码; pageSize-页面数据条数范围")
// @RequestMapping(value = "/queryExampleProgram", method = {RequestMethod.GET})
// public List<ApiOwProductBean> queryExampleProgram(String classificationId,int pageNo, int pageSize){
// return this.queryProgramUtil(classificationId,pageNo,pageSize);
// }
//
// @AutoLog(value = "案例展示-网站建设")
// @ApiOperation(value = "案例展示-网站建设", notes = "classificationId-父级产品编号(案例展示_网站建设); pageNo-页码; pageSize-页面数据条数范围")
// @RequestMapping(value = "/queryExampleWebsite", method = {RequestMethod.GET})
// public List<ApiOwProductBean> queryExampleWebsite(String classificationId,int pageNo, int pageSize){
// return this.queryProgramUtil(classificationId,pageNo,pageSize);
// }


+ 28
- 1
jeecg-module-officialWebsit/src/main/java/org/jeecg/modules/demo/officialWebsite/api/mapper/xml/ApiOwClassificationMapper.xml View File

@ -37,8 +37,35 @@
<insert id="addClassification" parameterType="org.jeecg.modules.demo.officialWebsite.api.bean.ApiOwClassificationBean"> <insert id="addClassification" parameterType="org.jeecg.modules.demo.officialWebsite.api.bean.ApiOwClassificationBean">
insert into ow_classification (id,create_by,create_time,update_by,update_time,sys_org_code,has_child,pid,name) insert into ow_classification (id,create_by,create_time,update_by,update_time,sys_org_code,has_child,pid,name)
values values
(#{id},#{createBy},#{createTime},#{updateBy},#{updateTime},#{sysOrgCode},#{hasChild},#{pid},#{name});
(#{id},#{createBy},#{createTime},#{updateBy},#{updateTime},#{sysOrgCode},#{hasChild},#{pid},#{name})
</insert> </insert>
<!--<insert id="addClassification" parameterType="org.jeecg.modules.demo.officialWebsite.api.bean.ApiOwClassificationBean">
insert into ow_classification
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="id != null">id,</if>
<if test="createBy != null">create_by,</if>
<if test="createTime != null">create_time,</if>
<if test="updateBy != null">update_by,</if>
<if test="updateTime != null">update_time,</if>
<if test="sysOrgCode != null">sys_org_code,</if>
<if test="hasChild != null">has_child,</if>
<if test="pid != null">pid,</if>
<if test="name != null">name,</if>
</trim>
)
values
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="id != null">#{id},</if>
<if test="createBy != null">#{createBy},</if>
<if test="createTime != null">#{createTime},</if>
<if test="updateBy != null">#{updateBy},</if>
<if test="updateTime != null">#{updateTime},</if>
<if test="sysOrgCode != null">#{sysOrgCode},</if>
<if test="hasChild != null">#{hasChild},</if>
<if test="pid != null">pid,</if>
<if test="name != null">name,</if>
</trim>
</insert>-->
<!--删除分类--> <!--删除分类-->
<delete id="deleteClassification" parameterType="String"> <delete id="deleteClassification" parameterType="String">


+ 40
- 26
jeecg-module-officialWebsit/src/main/java/org/jeecg/modules/demo/officialWebsite/api/utils/Utils.java View File

@ -21,6 +21,7 @@ public class Utils {
int beginIndex = (pageNo-1)*pageSize; int beginIndex = (pageNo-1)*pageSize;
apiOwImageBean.setPageNo(beginIndex); apiOwImageBean.setPageNo(beginIndex);
apiOwImageBean.setPageSize(pageSize); apiOwImageBean.setPageSize(pageSize);
apiOwImageBean.setClassification_id(type);
return apiOwImageBean; return apiOwImageBean;
} }
@ -38,32 +39,45 @@ public class Utils {
int beginIndex = (pageNo-1)*pageSize; int beginIndex = (pageNo-1)*pageSize;
productBean.setPageNo(beginIndex); productBean.setPageNo(beginIndex);
productBean.setPageSize(pageSize); productBean.setPageSize(pageSize);
productBean.setClassificationId(type);
return productBean; return productBean;
} }
public static ApiOwProductBean split1(HashMap<String,Object> map){
//获取前端传递的数据
int count = (int) map.get("count");
int pageNo = (int) map.get("pageNo");
int pageSize = (int) map.get("pageSize");
String isHot = (String) map.get("isHot");
ApiOwProductBean apiOwProductBean = (ApiOwProductBean) map.get("apiOwProductBean");
//计算总页数
int pageCount = count%pageSize==0?count/pageSize:count/pageSize+1;
//边界判断
if(pageNo < 1){
pageNo = 1;
}else if(pageNo > pageCount){
pageNo = pageCount;
}
//查询开始下标
int beginIndex = (pageNo-1)*pageSize;
//设置对象参数
apiOwProductBean.setPageNo(beginIndex);
apiOwProductBean.setPageSize(pageSize);
if("1".equals(isHot)){apiOwProductBean.setIsHot(isHot);}
return apiOwProductBean;
}
//
// public static ApiOwProductBean split1(HashMap<String,Object> map){
// //获取前端传递的数据
// int count = (int) map.get("count");
// int pageNo = (int) map.get("pageNo");
// int pageSize = (int) map.get("pageSize");
// String isHot = (String) map.get("isHot");
// ApiOwProductBean apiOwProductBean = (ApiOwProductBean) map.get("apiOwProductBean");
//
// //计算总页数
// int pageCount = count%pageSize==0?count/pageSize:count/pageSize+1;
// //边界判断
// if(pageNo < 1){
// pageNo = 1;
// }else if(pageNo > pageCount){
// pageNo = pageCount;
// }
// //查询开始下标
// int beginIndex = (pageNo-1)*pageSize;
//
// //设置对象参数
// apiOwProductBean.setPageNo(beginIndex);
// apiOwProductBean.setPageSize(pageSize);
// if("1".equals(isHot)){apiOwProductBean.setIsHot(isHot);}
//
// return apiOwProductBean;
// }
//
// public static HashMap<String, Object> getMap(HashMap<String, Object> map, String ... params){
//
// //将传递参数存入map
// for (String param : params) {
// String[] result = param.split(":");
// map.put(result[0],result[1]);
// }
//
// return map;
// }
} }

+ 6
- 4
jeecg-module-system/jeecg-system-start/src/main/resources/application-dev.yml View File

@ -187,10 +187,11 @@ jeecg:
excludeUrls: /test/jeecgDemo/demo3,/test/jeecgDemo/redisDemo/**,/category/**,/visual/**,/map/**,/jmreport/bigscreen2/** excludeUrls: /test/jeecgDemo/demo3,/test/jeecgDemo/redisDemo/**,/category/**,/visual/**,/map/**,/jmreport/bigscreen2/**
#阿里云oss存储和大鱼短信秘钥配置 #阿里云oss存储和大鱼短信秘钥配置
oss: oss:
accessKey: ??
secretKey: ??
endpoint: oss-cn-beijing.aliyuncs.com
bucketName: jeecgdev
accessKey: LTAI5t6xqHCQ3qJnbgxaVciZ
secretKey: h5QnNmYLMdXRTBhgFJzsUCi9zcFbWy
endpoint: oss-cn-guangzhou.aliyuncs.com
bucketName: augcl
staticDomain: https://augcl.oss-cn-guangzhou.aliyuncs.com/
# ElasticSearch 6设置 # ElasticSearch 6设置
elasticsearch: elasticsearch:
cluster-name: jeecg-ES cluster-name: jeecg-ES
@ -237,6 +238,7 @@ cas:
logging: logging:
level: level:
org.jeecg.modules.system.mapper: info org.jeecg.modules.system.mapper: info
org.jeecg.modules.demo.officialWebsite.api.mapper: debug
#swagger #swagger
knife4j: knife4j:
#开启增强配置 #开启增强配置


Loading…
Cancel
Save