Browse Source

修改导出等

feature/v.2.0.0
caoyizhong 3 years ago
parent
commit
2d7c6642fa
  1. 5
      air/pom.xml
  2. 3
      air/src/main/java/com/air/AirApplication.java
  3. 5
      air/src/main/java/com/air/applets/controller/PlanSpotController.java
  4. 6
      air/src/main/java/com/air/applets/dto/LandDto.java
  5. 62
      air/src/main/java/com/air/land/controller/LandListedController.java
  6. 3
      air/src/main/java/com/air/land/controller/LandListedLonLatController.java
  7. 50
      air/src/main/java/com/air/land/service/impl/LandListedServiceImpl.java
  8. 35
      air/src/main/java/com/air/utils/ExcelUtil.java
  9. 245
      air/src/main/java/com/air/utils/RedisUtil.java
  10. 2
      air/src/main/resources/mapper/LandListedMapper.xml

5
air/pom.xml

@ -24,6 +24,11 @@
<artifactId>jts</artifactId>
<version>1.13</version>
</dependency>
<!-- redis依赖包 -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>
</dependencies>

3
air/src/main/java/com/air/AirApplication.java

@ -5,6 +5,8 @@ import com.cinderella.framework.common.swagger.annotation.EnableCinderellaSwagge
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.scheduling.annotation.EnableScheduling;
/**
* @author zeb
@ -12,6 +14,7 @@ import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
@EnableCinderellaSwagger2
@EnableCinderellaResourceServer
@EnableScheduling
@MapperScan(basePackages = {"com.air.**.mapper"})
public class AirApplication {

5
air/src/main/java/com/air/applets/controller/PlanSpotController.java

@ -4,6 +4,7 @@ import cn.hutool.core.util.StrUtil;
import com.air.applets.entity.PlanSpot;
import com.air.applets.service.PlanSpotService;
import com.air.applets.vo.PlanLandSpotVo;
import com.alibaba.druid.util.StringUtils;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
import com.cinderella.framework.common.core.util.R;
@ -79,10 +80,10 @@ public class PlanSpotController {
public R<Boolean> updateById(@RequestBody @Validated PlanLandSpotVo planLandSpotVo) {
String createUserId = planLandSpotVo.getPlanLandVo().getCreateUserId();
if (StrUtil.isEmpty(createUserId)){
R.failed("创建用户id不能为空");
return R.failed("创建用户id不能为空");
}
if (!createUserId.equals(SecurityUtils.getUserId().toString())){
R.failed("没有权限修改");
return R.failed("没有权限修改");
}
return R.ok(planSpotService.updatePlanSpot(planLandSpotVo), "保存成功");
}

6
air/src/main/java/com/air/applets/dto/LandDto.java

@ -39,9 +39,11 @@ public class LandDto {
@ApiModelProperty(value = "容积率")
private BigDecimal plotRatio;
@ApiModelProperty(value = "建筑密度(%)")
private BigDecimal buildingDensity;
// private BigDecimal buildingDensity;
private String buildingDensity;
@ApiModelProperty(value = "绿地率(%)")
private BigDecimal greenSpaceRatio;
// private BigDecimal greenSpaceRatio;
private String greenSpaceRatio;
@ApiModelProperty(value = "限高")
private String heighPermitted;
@ApiModelProperty(value = "出让年限")

62
air/src/main/java/com/air/land/controller/LandListedController.java

@ -8,25 +8,36 @@ import com.air.land.vo.LandListedPageVo;
import com.air.land.vo.LandListedVo;
import com.air.utils.DateUtil;
import com.air.utils.ExcelUtil;
import com.air.utils.RedisUtil;
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.cinderella.framework.common.core.util.R;
import com.cinderella.framework.common.data.mybatis.QueryPage;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import lombok.extern.slf4j.Slf4j;
import org.apache.commons.lang3.StringUtils;
import org.apache.poi.xssf.streaming.SXSSFWorkbook;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.data.redis.connection.jedis.JedisUtils;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.web.bind.annotation.*;
import org.springframework.web.multipart.MultipartFile;
import javax.servlet.http.HttpServletResponse;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.time.LocalDateTime;
import java.util.List;
import java.util.concurrent.TimeUnit;
/**
@ -38,6 +49,7 @@ import java.util.List;
@RestController
@RequestMapping("/landlisted")
@Api(value = "landlisted", tags = "已挂牌地块据管理")
@Slf4j
public class LandListedController {
@Autowired
@ -220,6 +232,9 @@ public class LandListedController {
return R.ok(minioDownUrl + landListedUrl);
}
@Autowired
private RedisUtil redisUtil;
/**
* 导出已挂牌地块信息
*
@ -229,14 +244,51 @@ public class LandListedController {
@ApiOperation(value = "导出全部已挂牌地块信息", notes = "导出全部已挂牌地块信息")
@GetMapping("/exportAllLandListExcel")
public void exportAllLandListExcel(HttpServletResponse response) throws IOException {
// if(redisUtil.getCacheObject("/exportAllLandListExcel/wb") != null){
//// OutputStream outputStream = new ByteArrayOutputStream();
// XSSFWorkbook wb = redisUtil.getCacheObject("/exportAllLandListExcel/wb");
// response.setContentType("application/vnd.ms-excel;charset=utf-8");
// response.setHeader("Content-Disposition", "attachment;filename=report.xlsx");
// OutputStream outputStream = response.getOutputStream();
// wb.write(outputStream);
// }else{
// List<List<String>> landList = landListedService.getLandList(null);
// InputStream resourceAsStream = LandListedController.class.getClassLoader().getResourceAsStream("templates/excel/exportLandList.xlsx");
// // 读取excel模板
// XSSFWorkbook wb = ExcelUtil.exportLandListedExcel(landList, resourceAsStream, 2);
// response.setContentType("application/vnd.ms-excel;charset=utf-8");
// response.setHeader("Content-Disposition", "attachment;filename=report.xlsx");
// OutputStream outputStream = response.getOutputStream();
// wb.write(outputStream);
// }
List<List<String>> landList = landListedService.getLandList(null);
InputStream resourceAsStream = LandListedController.class.getClassLoader().getResourceAsStream("templates/excel/exportLandList.xlsx");
// 读取excel模板
XSSFWorkbook wb = ExcelUtil.exportLandListedExcel(landList, resourceAsStream, 2);
response.setContentType("application/vnd.ms-excel;charset=utf-8");
response.setHeader("Content-Disposition", "attachment;filename=report.xlsx");
OutputStream outputStream = response.getOutputStream();
wb.write(outputStream);
XSSFWorkbook wb = null;
OutputStream outputStream = new ByteArrayOutputStream();
try {
log.info("开始时间"+System.currentTimeMillis());
wb = ExcelUtil.exportLandListedExcel(landList, resourceAsStream, 2);
response.setContentType("application/vnd.ms-excel;charset=utf-8");
response.setHeader("Content-Disposition", "attachment;filename=report.xlsx");
outputStream = response.getOutputStream();
wb.write(outputStream);
log.info("结束时间"+System.currentTimeMillis());
} catch (IOException e) {
e.printStackTrace();
} finally {
try {
if (outputStream != null) {
outputStream.close();
}
if (wb != null) {
wb.close();
}
} catch (IOException e) {
e.printStackTrace();
}
}
}
}

3
air/src/main/java/com/air/land/controller/LandListedLonLatController.java

@ -88,10 +88,11 @@ public class LandListedLonLatController {
if (landListedLonLatVo.getLatId() == null){
return R.failed("经纬度id不能为空");
}
log.info("参数==="+landListedLonLatVo);
LandListedLonLat landListedLonLat = new LandListedLonLat();
BeanUtil.copyProperties(landListedLonLatVo, landListedLonLat);
//转换经纬度标准格式
landListedLonLat.setLandLonLat(null);
//landListedLonLat.setLandLonLat(null);
landListedLonLatService.update(landListedLonLat, Wrappers.<LandListedLonLat>query().lambda()
.eq(LandListedLonLat::getLatId, landListedLonLatVo.getLatId()));
return R.ok("修改成功");

50
air/src/main/java/com/air/land/service/impl/LandListedServiceImpl.java

@ -6,6 +6,7 @@ import cn.hutool.core.lang.Snowflake;
import cn.hutool.core.util.StrUtil;
import com.air.applets.dto.LandDto;
import com.air.applets.vo.LandVo;
import com.air.land.controller.LandListedController;
import com.air.land.dto.LandListedDto;
import com.air.land.dto.LandListedStatisticsDto;
import com.air.land.entity.*;
@ -14,6 +15,7 @@ import com.air.land.service.*;
import com.air.land.vo.LandListedAppletsVo;
import com.air.utils.DateUtil;
import com.air.utils.ExcelUtil;
import com.air.utils.RedisUtil;
import com.baomidou.mybatisplus.core.conditions.Wrapper;
import com.baomidou.mybatisplus.core.enums.SqlMethod;
import com.baomidou.mybatisplus.core.toolkit.BeanUtils;
@ -30,16 +32,24 @@ import org.apache.poi.xssf.usermodel.XSSFCell;
import org.apache.poi.xssf.usermodel.XSSFRow;
import org.apache.poi.xssf.usermodel.XSSFSheet;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Lazy;
import org.springframework.scheduling.annotation.Async;
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import org.springframework.web.multipart.MultipartFile;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.math.BigDecimal;
import java.time.LocalDateTime;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import java.util.concurrent.TimeUnit;
import java.util.stream.Collectors;
/**
@ -63,6 +73,9 @@ public class LandListedServiceImpl extends ServiceImpl<LandListedMapper, LandLis
private AuctionRecordService auctionRecordService;
@Autowired
private RedisUtil redisUtil;
@Override
public R<Page<LandListedDto>> getLandListedByDate(QueryPage page, LandListedAppletsVo appletsVo) {
Page<LandListedDto> page1 = page.toPage();
@ -185,12 +198,19 @@ public class LandListedServiceImpl extends ServiceImpl<LandListedMapper, LandLis
@Override
public List<List<String>> getLandList(List<String> ids) {
List<LandListed> landListeds=null;
List<List<String>> lists = new ArrayList<>();
if(ids==null){
landListeds=list();
if(redisUtil.getCacheObject("/exportAllLandListExcel") != null){
log.info("缓存取值!!!!!!!!!!!!!!!");
lists = redisUtil.getCacheObject("/exportAllLandListExcel");
return lists;
}else{
landListeds = list();
log.info("第一次取值取值!!!!!!!!!!!!!!!");
}
}else{
landListeds = this.listByIds(ids);
}
if (CollectionUtil.isEmpty(landListeds)) {
throw new BusinessException("未查询到已挂牌地块数据!");
@ -199,12 +219,38 @@ public class LandListedServiceImpl extends ServiceImpl<LandListedMapper, LandLis
landListeds.forEach(landListed -> {
list.add(entityToList(landListed));
});
redisUtil.setCacheObject("/exportAllLandListExcel",list,10, TimeUnit.MINUTES);
return list;
}
/**
* 定时查询已挂出导出全部数据
*/
@Async
@Scheduled(cron = "0 0/10 * * * ?") // 10分执行一次 “0 0 12 ?” 每天12时执行一次
public void selectCollection() throws IOException {
log.info("定时查询已挂出导出全部数据"+System.currentTimeMillis());
List<LandListed> landListeds = list();
if (!CollectionUtil.isEmpty(landListeds)) {
List<List<String>> list = new ArrayList<>();
landListeds.forEach(landListed -> {
list.add(entityToList(landListed));
});
redisUtil.setCacheObject("/exportAllLandListExcel",list,10, TimeUnit.MINUTES);//全部数据类型
// InputStream resourceAsStream = LandListedController.class.getClassLoader().getResourceAsStream("templates/excel/exportLandList.xlsx");
// // 读取excel模板
// XSSFWorkbook wb = ExcelUtil.exportLandListedExcel(list, resourceAsStream, 2);
// redisUtil.setCacheObject("/exportAllLandListExcel/wb",wb,10, TimeUnit.MINUTES);
// log.info("定时查询已挂出导出全部数据结束"+System.currentTimeMillis());
}
}
@Override
public List<LandDto> appletsLandListed(Page page, LandVo landVo) {
landVo.setNowDate(cn.hutool.core.date.DateUtil.formatDate(new Date()));
log.info("时间"+cn.hutool.core.date.DateUtil.formatDate(new Date()));
List<LandDto> landDtos = baseMapper.appletsLandListed(page, landVo);
if (StringUtils.isEmpty(landVo.getTransactionStatus())) {
landDtos.forEach(landDto -> {

35
air/src/main/java/com/air/utils/ExcelUtil.java

@ -11,6 +11,12 @@ import com.air.common.entity.ExcelConfig;
import com.cinderella.framework.common.core.exception.BusinessException;
import lombok.extern.slf4j.Slf4j;
import org.apache.commons.lang3.StringUtils;
import org.apache.poi.ss.usermodel.Cell;
import org.apache.poi.ss.usermodel.Row;
import org.apache.poi.xssf.streaming.SXSSFCell;
import org.apache.poi.xssf.streaming.SXSSFRow;
import org.apache.poi.xssf.streaming.SXSSFSheet;
import org.apache.poi.xssf.streaming.SXSSFWorkbook;
import org.apache.poi.xssf.usermodel.XSSFCell;
import org.apache.poi.xssf.usermodel.XSSFRow;
import org.apache.poi.xssf.usermodel.XSSFSheet;
@ -46,8 +52,35 @@ public class ExcelUtil {
* @date 2021/6/17
**/
public static XSSFWorkbook exportLandListedExcel(List<List<String>> dataList, InputStream inputStream, int startRow) throws IOException {
long startTime = System.currentTimeMillis();
// 读取excel模板
// XSSFWorkbook wb = new XSSFWorkbook(inputStream);
// SXSSFWorkbook swb = new SXSSFWorkbook(wb);
// SXSSFSheet sheet = swb.getSheetAt(0);
// //填充数据
// for (int i = 0; i < dataList.size(); i++) {
// SXSSFRow sheetRow = sheet.getRow(i + startRow);
// if (sheetRow == null) {
// sheetRow = sheet.createRow(i + startRow);
// }
// List<String> list = dataList.get(i);
// for (int j = 0; j < list.size(); j++) {
// String value = list.get(j);
// SXSSFCell cell = sheetRow.getCell(j);
// if (cell == null) {
// cell = sheetRow.createCell(j);
// }
// cell.setCellValue(value);
// }
// }
// //swb.dispose();// 释放workbook所占用的全部windows资源
// long endTime = System.currentTimeMillis();
// System.out.println("耗时"+(endTime-startTime));
// return wb;
// 读取excel模板
XSSFWorkbook wb = new XSSFWorkbook(inputStream);
// SXSSFWorkbook swb = new SXSSFWorkbook(wb);
XSSFSheet sheet = wb.getSheetAt(0);
//填充数据
for (int i = 0; i < dataList.size(); i++) {
@ -65,6 +98,8 @@ public class ExcelUtil {
cell.setCellValue(value);
}
}
long endTime = System.currentTimeMillis();
System.out.println("耗时"+(endTime-startTime));
return wb;
}

245
air/src/main/java/com/air/utils/RedisUtil.java

@ -0,0 +1,245 @@
package com.air.utils;
import java.util.*;
import java.util.concurrent.TimeUnit;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.redis.core.BoundSetOperations;
import org.springframework.data.redis.core.HashOperations;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.data.redis.core.ValueOperations;
import org.springframework.stereotype.Component;
import org.springframework.util.CollectionUtils;
/**
* @program: back-end
* @description: redis工具类
* @author: cyz
* @create: 2022-07-04 16:55
**/
@Component
public class RedisUtil {
@Autowired
public RedisTemplate redisTemplate;
/**
* 缓存基本的对象IntegerString实体类等
*
* @param key 缓存的键值
* @param value 缓存的值
*/
public <T> void setCacheObject(final String key, final T value)
{
redisTemplate.opsForValue().set(key, value);
}
/**
* 缓存基本的对象IntegerString实体类等
*
* @param key 缓存的键值
* @param value 缓存的值
* @param timeout 时间
* @param timeUnit 时间颗粒度
*/
public <T> void setCacheObject(final String key, final T value, final Integer timeout, final TimeUnit timeUnit)
{
redisTemplate.opsForValue().set(key, value, timeout, timeUnit);
}
/**
* 设置有效时间
*
* @param key Redis键
* @param timeout 超时时间
* @return true=设置成功false=设置失败
*/
public boolean expire(final String key, final long timeout)
{
return expire(key, timeout, TimeUnit.SECONDS);
}
/**
* 设置有效时间
*
* @param key Redis键
* @param timeout 超时时间
* @param unit 时间单位
* @return true=设置成功false=设置失败
*/
public boolean expire(final String key, final long timeout, final TimeUnit unit)
{
return redisTemplate.expire(key, timeout, unit);
}
/**
* 获得缓存的基本对象
*
* @param key 缓存键值
* @return 缓存键值对应的数据
*/
public <T> T getCacheObject(final String key)
{
ValueOperations<String, T> operation = redisTemplate.opsForValue();
return operation.get(key);
}
/**
* 删除单个对象
*
* @param key
*/
public boolean deleteObject(final String key)
{
return redisTemplate.delete(key);
}
/**
* 删除集合对象
*
* @param collection 多个对象
* @return
*/
public long deleteObject(final Collection collection)
{
return redisTemplate.delete(collection);
}
/**
* 缓存List数据
*
* @param key 缓存的键值
* @param dataList 待缓存的List数据
* @return 缓存的对象
*/
public <T> long setCacheList(final String key, final List<T> dataList)
{
Long count = redisTemplate.opsForList().rightPushAll(key, dataList);
return count == null ? 0 : count;
}
/**
* 获得缓存的list对象
*
* @param key 缓存的键值
* @return 缓存键值对应的数据
*/
public <T> List<T> getCacheList(final String key)
{
return redisTemplate.opsForList().range(key, 0, -1);
}
/**
* 缓存Set
*
* @param key 缓存键值
* @param dataSet 缓存的数据
* @return 缓存数据的对象
*/
public <T> BoundSetOperations<String, T> setCacheSet(final String key, final Set<T> dataSet)
{
BoundSetOperations<String, T> setOperation = redisTemplate.boundSetOps(key);
Iterator<T> it = dataSet.iterator();
while (it.hasNext())
{
setOperation.add(it.next());
}
return setOperation;
}
/**
* 获得缓存的set
*
* @param key
* @return
*/
public <T> Set<T> getCacheSet(final String key)
{
return redisTemplate.opsForSet().members(key);
}
/**
* 缓存Map
*
* @param key
* @param dataMap
*/
public <T> void setCacheMap(final String key, final Map<String, T> dataMap)
{
if (dataMap != null) {
redisTemplate.opsForHash().putAll(key, dataMap);
}
}
/**
* 获得缓存的Map
*
* @param key
* @return
*/
public <T> Map<String, T> getCacheMap(final String key)
{
return redisTemplate.opsForHash().entries(key);
}
/**
* 往Hash中存入数据
*
* @param key Redis键
* @param hKey Hash键
* @param value
*/
public <T> void setCacheMapValue(final String key, final String hKey, final T value)
{
redisTemplate.opsForHash().put(key, hKey, value);
}
/**
* 获取Hash中的数据
*
* @param key Redis键
* @param hKey Hash键
* @return Hash中的对象
*/
public <T> T getCacheMapValue(final String key, final String hKey)
{
HashOperations<String, String, T> opsForHash = redisTemplate.opsForHash();
return opsForHash.get(key, hKey);
}
/**
* 删除Hash中的数据
*
* @param key
* @param hkey
*/
public void delCacheMapValue(final String key, final String hkey)
{
HashOperations hashOperations = redisTemplate.opsForHash();
hashOperations.delete(key, hkey);
}
/**
* 获取多个Hash中的数据
*
* @param key Redis键
* @param hKeys Hash键集合
* @return Hash对象集合
*/
public <T> List<T> getMultiCacheMapValue(final String key, final Collection<Object> hKeys)
{
return redisTemplate.opsForHash().multiGet(key, hKeys);
}
/**
* 获得缓存的基本对象列表
*
* @param pattern 字符串前缀
* @return 对象列表
*/
public Collection<String> keys(final String pattern)
{
return redisTemplate.keys(pattern);
}
}

2
air/src/main/resources/mapper/LandListedMapper.xml

@ -107,7 +107,7 @@
and ll.deal is null
</if>
<if test='"passBy" == landVo.transactionStatus'>
-- and date_format(ll.auction_date,'%Y-%m-%d') &lt; #{landVo.nowDate}
<!-- and date_format(ll.auction_date,'%Y-%m-%d') &lt; #{landVo.nowDate} -->
and ll.deal = 0
</if>
<if test='"dealDone" == landVo.transactionStatus'>

Loading…
Cancel
Save