/*
代码功能解释:
1. `location` 方法:根据经纬度获取所在城市的名称和地址。
2. `matchFace` 方法:进行人脸比对。
3. `getOption` 方法:根据表名和列名获取选项列表,用于联动接口。
4. `getFollowByOption` 方法:根据表名、列名和列值获取单条记录。
5. `sh` 方法:修改表的sfsh状态。
6. `remindCount` 方法:根据表名、列名、类型和参数map,获取需要提醒的记录数。
7. `group1` 方法:查询字典表的分组统计结果。
8. `cal` 方法:单列求和,用于计算某个字段的总和。
9. `group` 方法:分组统计,用于统计某个字段的分组结果。
10. `value` 方法:按值统计,用于统计两个字段的关联值。
11. `newSelectGroupSum` 和 `newSelectGroupCount` 方法:查询字典表的分组求和和分组统计总条数。
12. `newSelectDateGroupSum` 和 `newSelectDateGroupCount` 方法:查询当前表的日期分组求和和分组统计总条数。
13. `barSum` 方法:柱状图求和,用于统计多个字段的总和。
14. `barCount` 方法:柱状图统计,用于统计多个字段的计数。
以上方法中,多数涉及数据库查询和Baidu API的调用,用于数据处理和展示。同时,这些方法都返回R对象,用于前后端的数据交互。
*/
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.add(Cale
没有合适的资源?快使用搜索试试~ 我知道了~
(源码)基于Java和SSM框架的微博网站管理系统.zip

共756个文件
svg:163个
js:159个
java:98个

1.该资源内容由用户上传,如若侵权请联系客服进行举报
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
版权申诉
0 下载量 153 浏览量
2025-06-14
13:54:57
上传
评论
收藏 14.89MB ZIP 举报
温馨提示
# 基于Java和SSM框架的微博网站管理系统 ## 项目简介 这是一个基于Java的微博网站管理系统,采用SSM(Spring + SpringMVC + MyBatis)框架开发,使用MySQL作为数据库,实现了微博网站常见的业务功能以及后台管理功能。 ## 项目的主要特性和功能 1. 用户管理包括用户的登录、注册、退出、密码重置,可进行用户信息的查询、保存、更新和删除操作,还支持用户批量上传。具备基本权限控制,通过判断用户角色执行相应操作,并使用IgnoreAuth注解标记无需认证的接口。 2. 论坛管理能够进行论坛帖子的增删改查,提供分页查询、获取详情、保存、更新、删除以及批量上传等功能。 3. 公告管理与论坛管理类似,负责公告信息的增删改查,包括分页查询、获取详情、保存、更新、删除以及批量上传操作。 4. 文章管理对文章(微博)相关操作进行处理,如文章列表查询、信息获取、保存、更新、删除,支持文章分页查询,以及前端获取文章列表和详情。
资源推荐
资源详情
资源评论






























收起资源包目录





































































































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


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


最新资源
- 职业院校计算机教育中复式分层教学法的应用分析.docx
- 支持 CNN 神经网络与生成对抗网络知识学习的机器学习平台
- 江苏大学自动化专业电子专业技术课程设计.doc
- 项目管理要突出解决好四个问题.docx
- AIFlowy-Java资源
- 大数据时代下中职语文教学中的家国情怀渗透.docx
- 干掉隐藏分区Y460安装Windows7.doc
- 大数据创造的生物新材料-合成蜘蛛丝正在走进人类的衣住行.docx
- PLC控制的智能抢答器设计.docx
- 统计软件与应用技术B卷.doc
- 基因工程试题及答案全集.doc
- 任务驱动法在计算机教学应用中注意的几点问题.docx
- 网站运维网站运营管理规范.doc
- 全国计算机等级测验(二级)——C语言辅导教材(清华大学出版).doc
- 数据结构与算法期末练习题含答案.doc
- 基于机器学习的情感分析方法及应用研究综述.docx
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈



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