Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

icu.easyj.sdk:easyj-tencent-cloud-sdk

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

icu.easyj.sdk:easyj-tencent-cloud-sdk

EasyJ 腾讯云SDK模块。 目前包括: 1、OCR -> IDCardOCR(文字识别 -> 身份证识别): https://console.cloud.tencent.com/ocr

  • 0.7.8
  • Source
  • Maven
  • Socket score

Version published
Maintainers
1
Source

easyj

官网

https://easyj.icu

介绍

本项目主要提供一系列的封装好的工具类或功能,供大家使用。 项目宗旨:能用一行代码解决的问题,就不用两行。

安装教程

  1. springboot项目
<dependencyManagement>
	<dependencies>
		<groupId>icu.easyj.boot</groupId>
		<artifactId>easyj-spring-boot-bom</artifactId>
		<version>0.7.8</version>
		<type>pom</type>
		<scope>import</scope>
	</dependencies>
</dependencyManagement>
<dependencies>
	<!-- @Cache304所需依赖 -->
	<dependency>
		<groupId>icu.easyj.boot</groupId>
		<artifactId>easyj-spring-boot-starter-web</artifactId>
	</dependency>
	<!-- @ExcelExport所需依赖 -->
	<dependency>
		<groupId>icu.easyj.boot</groupId>
		<artifactId>easyj-spring-boot-starter-poi-excel</artifactId>
	</dependency>
	<dependency>
		<groupId>icu.easyj.boot</groupId>
		<artifactId>easyj-spring-boot-starter-poi-excel-afterturn</artifactId>
	</dependency>
</dependencies>
  1. 非springboot项目
<dependencies>
	<dependency>
		<groupId>icu.easyj</groupId>
		<artifactId>easyj-all</artifactId>
		<version>0.7.8</version>
	</dependency>
</dependencies>

使用说明

# 注:下面的MyEntity为任意的自定义领域模型类。
1、@ExcelExport, @Excel, @ExcelCell三个注解,实现Excel文件导出功能
  1. 在Controller接口上,添加@ExcelExport(fileNamePre = "文件名前缀", dataType = MyEntity.class)
  2. MyEntity类上添加@Excel注解,用于配置导出的表格的样式,如:是否添加序号列、是否冻结首行、是否添加数据筛选等等
  3. MyEntity类的属性上添加@ExcelCell注解,用于配置列相关信息,如:列名、列号、列宽、列字体颜色、列背景颜色等等
  4. 请求多传一个GET参数&doExport=true,表示此次请求为文件导出请求
  5. 后端在接收到doExport参数时,此次请求,将分页功能禁用掉,主要是为了导出不分页情况下的所有数据
2、ExcelUtils一个方法,@Excel, @ExcelCell两个注解,实现Excel文件导入功能
@RestController
public class XxxController {

	@PostMapping("/test/excel-import")
	public List<MyEntity> testExcelImport(@RequestPart("file") MultipartFile file) {
		// excel文件转为列表数据
		List<MyEntity> list = ExcelUtils.toList(file.getInputStream(), MyEntity.class);

		// 打印一下
		System.out.println(StringUtils.toString(list));

		// 将转换后的数据直接返回,方便查看
		return list;
	}
}
  1. @Excel@ExcelCell注解的使用方法同Excel文件导出功能中的使用方法
3、@Cache304一个注解实现GET接口的304缓存功能
  1. 在Controller的GET接口上,添加@Cache304(cacheSeconds = 60, cacheDays = 1, useMaxAge = true)
  2. 在自定义领域模型类MyEntity上添加@Excel注解,用于配置导出的表格的样式
  3. 在自定义领域模型类MyEntity的属性上添加@ExcelCell注解,用于配置列相关信息

使用示例

详见使用示例项目:https://gitee.com/easyj-projects/easyj-samples

参与贡献的方法

  1. Fork 本仓库到自己的个人仓库中
  2. 在Fork下来的仓库的最新代码上新建分支,名称分支可任意自定义
  3. 编写代码,并Push
  4. 回到本仓库提交 Pull Request,传送门

FAQs

Package last updated on 10 Jul 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc