/*
代码功能解释:
1. `location` 方法:
根据经纬度获取地理位置信息,使用 Baidu 提供的 API 进行查询。
2. `matchFace` 方法:
进行人脸比对,通过 Baidu API 进行人脸比对并返回结果。
3. `getOption` 方法:
获取指定表的列列表。
4. `getFollowByOption` 方法:
根据表的列值获取单条记录。
5. `sh` 方法:
修改指定表的 `sfsh` 状态。
6. `remindCount` 方法:
获取需要提醒的记录数,根据参数计算并返回记录数。
7. `group1` 方法:
进行图表统计,通过调用 `chartBoth` 方法获取并返回图表统计结果。
8. `cal` 方法:
计算指定列的求和值。
9. `group` 方法:
进行分组统计。
10. `value` 方法:
按值统计。
11. `newSelectGroupSum` 方法:
查询字典表的分组求和。
12. `queryScore` 方法:
查询字典表的分组统计总条数。
13. `newSelectGroupCount` 方法:
查询字典表的分组统计总条数。
14. `newSelectDateGroupSum` 方法:
查询当前表的日期分组求和。
15. `newSelectDateGroupCount` 方法:
查询当前表的日期分组统计总条数。
16. `barSum` 方法:
柱状图求和。
17. `barCount` 方法:
柱状图统计。
*/
package com.controller;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.text.SimpleDateFormat;
import java.util.*;
import javax.servlet.http.HttpServletRequest;
import com.alibaba.fastjson.JSON;
import com.utils.StringUtil;
import org.apache.commons.lang3.StringUtils;
import org.json.JSONObject;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.util.ResourceUtils;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import com.annotation.IgnoreAuth;
import com.baidu.aip.face.AipFace;
import com.baidu.aip.face.MatchRequest;
import com.baidu.aip.util.Base64Util;
import com.baomidou.mybatisplus.mapper.EntityWrapper;
import com.baomidou.mybatisplus.mapper.Wrapper;
import com.entity.ConfigEntity;
import com.service.CommonService;
import com.service.ConfigService;
import com.utils.BaiduUtil;
import com.utils.FileUtil;
import com.utils.R;
/**
* 通用接口
*/
@RestController
public class CommonController{
private static final Logger logger = LoggerFactory.getLogger(CommonController.class);
@Autowired
private CommonService commonService;
@Autowired
private ConfigService configService;
private static AipFace client = null;
private static String BAIDU_DITU_AK = null;
@RequestMapping("/location")
public R location(String lng,String lat) {
if(BAIDU_DITU_AK==null) {
BAIDU_DITU_AK = configService.selectOne(new EntityWrapper<ConfigEntity>().eq("name", "baidu_ditu_ak")).getValue();
if(BAIDU_DITU_AK==null) {
return R.error("请在配置管理中正确配置baidu_ditu_ak");
}
}
Map<String, String> map = BaiduUtil.getCityByLonLat(BAIDU_DITU_AK, lng, lat);
return R.ok().put("data", map);
}
/**
* 人脸比对
*
* @param face1 人脸1
* @param face2 人脸2
* @return
*/
@RequestMapping("/matchFace")
public R matchFace(String face1, String face2, HttpServletRequest request) {
if(client==null) {
/*String AppID = configService.selectOne(new EntityWrapper<ConfigEntity>().eq("name", "AppID")).getValue();*/
String APIKey = configService.selectOne(new EntityWrapper<ConfigEntity>().eq("name", "APIKey")).getValue();
String SecretKey = configService.selectOne(new EntityWrapper<ConfigEntity>().eq("name", "SecretKey")).getValue();
String token = BaiduUtil.getAuth(APIKey, SecretKey);
if(token==null) {
return R.error("请在配置管理中正确配置APIKey和SecretKey");
}
client = new AipFace(null, APIKey, SecretKey);
client.setConnectionTimeoutInMillis(2000);
client.setSocketTimeoutInMillis(60000);
}
JSONObject res = null;
try {
File file1 = new File(request.getSession().getServletContext().getRealPath("/upload")+"/"+face1);
File file2 = new File(request.getSession().getServletContext().getRealPath("/upload")+"/"+face2);
String img1 = Base64Util.encode(FileUtil.FileToByte(file1));
String img2 = Base64Util.encode(FileUtil.FileToByte(file2));
MatchRequest req1 = new MatchRequest(img1, "BASE64");
MatchRequest req2 = new MatchRequest(img2, "BASE64");
ArrayList<MatchRequest> requests = new ArrayList<MatchRequest>();
requests.add(req1);
requests.add(req2);
res = client.match(requests);
System.out.println(res.get("result"));
} catch (FileNotFoundException e) {
e.printStackTrace();
return R.error("文件不存在");
} catch (IOException e) {
e.printStackTrace();
}
return R.ok().put("data", com.alibaba.fastjson.JSONObject.parse(res.get("result").toString()));
}
/**
* 获取table表中的column列表(联动接口)
* @return
*/
@RequestMapping("/option/{tableName}/{columnName}")
@IgnoreAuth
public R getOption(@PathVariable("tableName") String tableName, @PathVariable("columnName") String columnName,String level,String parent) {
Map<String, Object> params = new HashMap<String, Object>();
params.put("table", tableName);
params.put("column", columnName);
if(StringUtils.isNotBlank(level)) {
params.put("level", level);
}
if(StringUtils.isNotBlank(parent)) {
params.put("parent", parent);
}
List<String> data = commonService.getOption(params);
return R.ok().put("data", data);
}
/**
* 根据table中的column获取单条记录
* @return
*/
@RequestMapping("/follow/{tableName}/{columnName}")
@IgnoreAuth
public R getFollowByOption(@PathVariable("tableName") String tableName, @PathVariable("columnName") String columnName, @RequestParam String columnValue) {
Map<String, Object> params = new HashMap<String, Object>();
params.put("table", tableName);
params.put("column", columnName);
params.put("columnValue", columnValue);
Map<String, Object> result = commonService.getFollowByOption(params);
return R.ok().put("data", result);
}
/**
* 修改table表的sfsh状态
* @param map
* @return
*/
@RequestMapping("/sh/{tableName}")
public R sh(@PathVariable("tableName") String tableName, @RequestBody Map<String, Object> map) {
map.put("table", tableName);
commonService.sh(map);
return R.ok();
}
/**
* 获取需要提醒的记录数
* @param tableName
* @param columnName
* @param type 1:数字 2:日期
* @param map
* @return
*/
@RequestMapping("/remind/{tableName}/{columnName}/{type}")
@IgnoreAuth
public R remindCount(@PathVariable("tableName") String tableName, @PathVariable("columnName") String columnName,
@PathVariable("type") String type,@RequestParam Map<String, Object> map) {
map.put("table", tableName);
map.put("column", columnName);
map.put("type", type);
if(type.equals("2")) {
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
Calendar c = Calendar.getInstance();
Date remindStartDate = null;
Date remindEndDate = null;
if(map.get("remindstart")!=null) {
Integer remindStart = Integer.parseInt(map.get("remindstart").toString());
c.setTime(new Date());
c.add(Calendar.DAY_OF_MONTH,remindStart);
remindStartDate = c.getTime();
map.put("remindstart", sdf.format(remindStartDate));
}
if(map.get("remindend")!=null) {
Integer remindEnd = Integer.parseInt(map.get("remindend").toString());
c.setTime(new Date());
c.ad
没有合适的资源?快使用搜索试试~ 我知道了~
(源码)基于Spring Boot框架的多媒体素材库系统.zip

共783个文件
svg:162个
js:157个
java:117个

1.该资源内容由用户上传,如若侵权请联系客服进行举报
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
版权申诉
0 下载量 161 浏览量
2025-06-10
11:21:59
上传
评论
收藏 19.05MB ZIP 举报
温馨提示
# 基于Spring Boot框架的多媒体素材库系统 ## 项目简介 本项目基于Spring Boot框架开发,旨在为用户提供多媒体素材的存储、管理和应用功能。系统路径为E:百度网盘下载文件夹3300套JAVA毕业设计项目成品源码testspringboot214 。 ## 项目的主要特性和功能 推测系统可能具备以下功能 1. 用户模块包含用户注册与登录功能。 2. 素材管理支持多媒体素材上传,具备素材分类管理功能,可进行素材搜索,提供素材预览与下载功能。 ## 安装使用步骤 假设已下载本项目的源码文件,按以下步骤操作 1. 配置数据库连接在srcmainresourcesapplication.yml文件中,配置数据库的URL、用户名和密码。 2. 导入并运行项目使用IntelliJ IDEA或Eclipse等开发工具导入源码文件并运行。 3. 启动Spring Boot应用在命令行或终端输入命令启动Spring Boot应用。
资源推荐
资源详情
资源评论




























收起资源包目录





































































































共 783 条
- 1
- 2
- 3
- 4
- 5
- 6
- 8
资源评论


t0_54program
- 粉丝: 1485
上传资源 快速赚钱
我的内容管理 展开
我的资源 快来上传第一个资源
我的收益
登录查看自己的收益我的积分 登录查看自己的积分
我的C币 登录后查看C币余额
我的收藏
我的下载
下载帮助


最新资源
- 精华版国家开放大学电大《可编程控制器应用》机考2套真题题库3.docx
- 08年数据库原理试卷A.doc
- 工商管理专业毕业论文团购网站营销策略研究.doc
- 人工智能7课题.pptx
- 大学生电子商务求职自荐信.docx
- 移动通信基本原理.pptx
- Flash动画考试试卷(最新整理).pdf
- MATLAB电磁场与电磁波应用(37页).doc
- java课程设计qq聊天程序省名师优质课赛课获奖课件市赛课百校联赛优质课一等奖课件.pptx
- 数据库应用案例套课件幻灯片完整版ppt教学教程最全电子讲义(最新).pptx
- 机床电气控制与PLC试卷A.doc
- 上海浦东临港地区工业互联网示范区建设方案.docx
- 精华版国家开放大学电大专科《计算机组网技术》机考网考形考题库及答案.pdf
- 单片机实验——秒表--(详细步骤)(9页).doc
- 2023年Grasshopper学习手册笔记含英文注解.doc
- 互联网打车发展现状及市场前景分析报告.pptx
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈



安全验证
文档复制为VIP权益,开通VIP直接复制
