最近在开发一些通用的excel数据导入的功能,由于涉及到导入的模块很多,所以开发了一个比较通用的excel导入模板类文件。并且使用annotation作为验证数据的配置。
01 package com.hp.dylan.jv;
02
03 import java.lang.annotation.ElementType;
04 import java.lang.annotation.Retention;
05 import java.lang.annotation.RetentionPolicy;
06 import java.lang.annotation.Target;
07
08 @Retention(RetentionPolicy.RUNTIME)
09 @Target(ElementType.FIELD)
10 public @interface ExcelAnnotation {
11
12 //excel column name
13 public String importCellName();
14
15 //excel cell data weather is required
16 public boolean isRequired();
17
18 //excel cell data datalength.
19 public int importDataLen();
20
21 //excel cell data type.
22 public String importDataType();
23
24 //excel cell mapping index.
25 public int importCellIndex();
26
27 //excel data weather eixts in db.
28 public boolean isEixtance();
29 }
1 看看需要导入excel的模型类的定义:(AdditionJvImportModel)
01 package com.hp.dylan.jv;
02 public class AdditionJvImportModel {
03 @ExcelAnnotation( importCellName = "EN1",isRequired=true ,importDataLen=100,importDataType="String",importCellIndex = 1,isEixtance=true)
04 private String sellEntity;
05 @ExcelAnnotation(importCellName = "SE2",isRequired=false ,importDataLen=4,importDataType="String",importCellIndex =2, isEixtance=false)
06 private String sellSe;
07 @ExcelAnnotation(importCellName = "DI3",isRequired=false ,importDataLen=10,importDataType="String",importCellIndex = 3, isEixtance=false)
08 private String sellDi;
09 @ExcelAnnotation(importCellName = "DEPT4",isRequired=false ,importDataLen=8,importDataType="String",importCellIndex = 4, isEixtance=false)
10 private String sellDept;
11 @ExcelAnnotation(importCellName = "SF5",isRequired=false ,importDataLen=10,importDataType="String",importCellIndex = 5, isEixtance=false)
12 private String sellSf;
13 @ExcelAnnotation(importCellName = "PT6",isRequired=false ,importDataLen=4,importDataType="String",importCellIndex = 6, isEixtance=false)
14 private String sellPt;
15 @ExcelAnnotation(importCellName = "PL7",isRequired=false ,importDataLen=10,importDataType="String",importCellIndex = 7, isEixtance=false)
16 private String sellPl;
17 @ExcelAnnotation(importCellName = "SL8",isRequired=false ,importDataLen=4,importDataType="String",importCellIndex = 8, isEixtance=false)
18 private String sellSl;
19 @ExcelAnnotation(importCellName = "Amount9",isRequired=false ,importDataLen=25,importDataType="number(25,10)",importCellIndex = 9, isEixtance=false)
20 private String sellAmout;
21 @ExcelAnnotation(importCellName = "EN10",isRequired=true ,importDataLen=100,importDataType="String",importCellIndex = 10, isEixtance=true)
22 private String buyEntity;
23 @ExcelAnnotation(importCellName = "SE11",isRequired=false ,importDataLen=4,importDataType="String",importCellIndex = 11, isEixtance=false)
24 private String buySe;
25 @ExcelAnnotation(importCellName = "DI12",isRequired=false ,importDataLen=10,importDataType="String",importCellIndex = 12, isEixtance=false)
26 private String buyDi;
27 @ExcelAnnotation(importCellName = "DEPT13",isRequired=false ,importDataLen=8,importDataType="String",importCellIndex = 13, isEixtance=false)
28 private String buyDept;
29 @ExcelAnnotation(importCellName = "SF14",isRequired=false ,importDataLen=10,importDataType="String",importCellIndex = 14, isEixtance=false)
30 private String buySf;
31 @ExcelAnnotation(importCellName = "PT15",isRequired=false ,importDataLen=4,importDataType="String",importCellIndex = 15, isEixtance=false)
32 private String buyPt;
33 @ExcelAnnotation(importCellName = "PL16",isRequired=false ,importDataLen=10,importDataType="String",importCellIndex = 16, isEixtance=false)
34 private String buyPl;
35 @ExcelAnnotation(importCellName = "SL17",isRequired=false ,importDataLen=4,importDataType="String",importCellIndex = 17, isEixtance=false)
36 private String buySl;
37 @ExcelAnnotation(importCellName = "LSA Factor19",isRequired=false ,importDataLen=25,importDataType="number(25,10)",importCellIndex = 19, isEixtance=false)
38 private String tranFactor;
39 @ExcelAnnotation(importCellName = "GrossICPurchase20",isRequired=false ,importDataLen=25,importDataType="number(25,10)",importCellIndex = 20, isEixtance=false)
40 private String tranGross;
41 @ExcelAnnotation(importCellName = "EX Code21",isRequired=false ,importDataLen=5,importDataType="String",importCellIndex = 21, isEixtance=false)
42 private String tranExCode;
43 @ExcelAnnotation(importCellName = "Transaction Description24",isRequired=false ,importDataLen=200,importDataType="String",importCellIndex = 24, isEixtance=false)
44 private String tranDesr;
45 @ExcelAnnotation(importCellName = "Line Comments25",isRequired=false ,importDataLen=200,importDataType="String",importCellIndex = 25, isEixtance=false)
46 private String tranLineComm;
47 @ExcelAnnotation(importCellName = "Additional Line Comments30",isRequired=false ,importDataLen=200,importDataType="String",importCellIndex = 30, isEixtance=false)
48 private String tranAddLinComm;
49 @ExcelAnnotation(importCellName = "FROM VATID31",isRequired=false ,importDataLen=6,importDataType="String",importCellIndex = 31, isEixtance=false)
50 private String tranFVatId;
51 @ExcelAnnotation(importCellName = "TO VATID32",isRequired=false ,importDataLen=6,importDataType="String",importCellIndex = 32, isEixtance=false)
52 private String tranTVatId;
53 }
1 excel模型的解析中如何获取到此模型的描述配置。也就是获取他的annotation。
1 Map<Integer,ExcelAnnotation> mapping=new HashMap<Integer,ExcelAnnotation>();
2 for (int i = 0; i < filed.length; i++) {
3 Field f = filed[i];
4 ExcelAnnotation excel = f.getAnnotation(ExcelAnnotation.class);
5 if (excel != null) {
6 mapping.put(excel.importCellIndex(), excel);
7 }
8 }
1 如何根据annotation的描述来验证。
1 if(anno.isRequired()){
2 if(cellValue==null||"".equals(cellValue.trim())){
3 sb.append(anno.importCellName()+" can not be empty!"); 。。。}
4 }
1 如果需要跟db交互来进行检验的话,只需要定义一个abstract校验方法,具体的校验规则交给其实现者来完成
1 public abstract String validateExist(String value);
Noted:
你可以annotation完全的看做一种配置,你只需要获取你的model种的annotation标识,然后根据标识来进行一个校验规则的解析
你也可以结合 class reflection 机制来使用annotation,获取到model的annotation描述之后,根据class reflection 来动态的激活调用一些model中的方法,
分享到:
相关推荐
在Java编程语言中,注解(Annotation)是一种元数据,它提供了在代码中附加信息的能力,这些信息可以被编译器或运行时环境用来验证、处理或增强代码的行为。本篇我们将深入探讨“限定使用、文档、继承”这三个关键...
EXCEL所需要的jar包我们做项目,开发项目中经常会用到了
EXCEL_VBA编程24学时教程 第1学时 Visual Basic for Application 第2学时处理录制的宏
最后,结合`Book1.xlsx`这个文件名,虽然它看起来像一个Excel文件,但在这里没有提供具体的文件内容,所以无法直接关联到Spring事务注解的知识点。通常,这样的文件可能包含有关Spring事务管理的示例数据、测试用例...
public static List<Field> getAnnotatedFields(Class<?> clazz, Class<? extends Annotation> annotationClass) { // ... } } ``` 然后,我们可以编写一个方法,根据这些字段生成Excel工作表: ```java public...
首先,我们需要理解注解(Annotation)在Java中的作用。注解是一种元数据,它提供了在源代码中嵌入信息的方式,这些信息可以被编译器或者运行时环境读取和处理。通过定义自定义注解,我们可以标记特定的类、方法或...
import javax.annotation.PostConstruct; import java.io.IOException; import java.io.InputStream; import java.util.ArrayList; import java.util.List; @Service public class ExcelService { private ...
4. easypoi-annotation-3.0.3.jar:支持注解方式来定义Excel的映射规则,简化了编程工作。 在实际使用中,我们可以通过创建一个名为`Easy_poi_Util.java`的类,来封装Easy-Poi的基本操作。例如,我们可以创建一个...
Java库如Apache POI和JExcelAPI提供了对Excel的支持,但这里我们主要关注使用注解的库——例如,`OpenPojoExcel`或`XLSheet Annotation Processor`。这些库允许开发者通过在类和方法上添加特定注解,来定义Excel工作...
在Java开发中,上传并解析Excel文件是一种常见的需求,特别是在数据处理、报表导入或系统集成等场景。本篇文章将深入探讨如何实现这个功能,主要涉及的技术包括文件上传、Excel解析以及数据库操作。 首先,我们需要...
在Java编程环境中,生成并提供Excel文件下载是一个常见的需求,特别是在数据处理、报表生成或数据分析的应用中。要实现这一功能,通常会用到Apache POI库,这是一个强大的API,允许Java程序员创建、修改和显示...
在本文中,我们将深入探讨如何在SpringBoot项目中利用Maven和Java工具类实现Excel的导入与导出功能,特别是通过自定义注解和反射来获取数据。SpringBoot以其便捷的配置和强大的功能,已经成为Java开发中的热门框架,...
- **easypoi-annotation**: 注解包,用于定义导出Excel时的数据模型和字段。 - **easypoi-base**: 导入导出包,是核心功能所在,它提供了数据和Excel文件互相转换的核心实现。 - **easypoi-web**: 这个包提供了与...
在本文中,我们将深入探讨如何使用SpringBoot框架来实现后端接口,以便处理Excel文件的导出和批量导入功能。SpringBoot以其简化Spring应用开发的特性,成为了Java开发者广泛采用的工具。它允许我们快速构建可运行的...
首先,让我们了解什么是注解(Annotation)。注解是Java提供的一种元数据,它提供了在源代码中嵌入信息的方式,这些信息可以被编译器或JVM在编译时或运行时读取和处理。在本场景中,我们可以通过自定义注解来标注...
在Java编程中,Excel是一个广泛使用的工具,尤其在数据处理、报表生成以及数据分析等领域。"Excel创建工具类"是用于简化Excel文件操作的一种方法,它允许开发者通过编程方式快速生成和修改Excel工作簿。本篇将详细...
`ExportExcelController.java`可能包含控制器代码,用于接收请求并调用导出Excel的方法,而`ExcelStyle.java`和`ExcelAnnotation.java`可能分别用于定义Excel的样式和注解,以增强Excel的展示效果和元数据。...
1. 配置Spring MVC以处理文件上传,通常在配置文件中配置`<mvc:annotation-driven>`并引入`CommonsMultipartResolver`。 2. 在Controller中定义上传和下载方法,使用MultipartFile接收上传文件,通过...
结合Excel导入功能,可以实现从Excel文件批量导入数据到数据库的应用,这在数据分析、报表生成或者系统初始化等场景中非常实用。下面将详细介绍如何在Spring Boot项目中实现Excel数据的导入。 首先,我们需要引入...
《使用阿里巴巴EasyExcel进行Java Excel操作的深度解析》 在Java开发中,处理Excel数据是一项常见的任务,无论是数据导入导出、报表生成还是数据分析,都离不开对Excel的读写操作。阿里巴巴开源的EasyExcel框架为...