说明:有个需求需要选择固定内容导出,比如员工信息中有名称,性别,身份证号…,若只选择名称和性别,则其他信息将不导出
实现:选择的内容是根据实体类中的字段动态获取,其中字段注解的内容就是字段的说明,导出时将作为excle的header
其中获取实体类属性及属性固定注解上的内容
实体类:
@ApiModel(value = "员工信息") @Entity @Table(name = "tr_staff") public class TrStaff extends IDEntity { private static final long serialVersionUID = 6431919756293162778L; @ApiModelProperty(value = "工号") @Column private String jobNumber; @ApiModelProperty(value = "姓名") @Column private String name; // :0 女 1 男 @ApiModelProperty(value = "性别") @Column private Integer sex; @ApiModelProperty(value = "民族") @Column private String nation; @ApiModelProperty(value = "政治面貌") @Column private String politicCountenance; ...... }
获取信息, fieldMap中封装的是实体类中绝对不会需要的字段
/** * 获取累中的所有属性名称及注解内容 * @param instance * @param fieldMap * @return */ public static Map<String, String> getDeclaredFieldsInfo(Object instance, Map<String, String> fieldMap) throws NoSuchFieldException{ Map<String, String> map = new HashMap(); Class<?> clazz = instance.getClass(); Field[] fields=clazz.getDeclaredFields(); boolean b=false; for (int i = 0; i < fields.length; i++) { // 除过fieldMap中的属性,其他属性都获取 if(!fieldMap.containsValue(fields[i].getName())) { // Field field=clazz.getDeclaredField(fields[i].getName()); boolean annotationPresent = fields[i].isAnnotationPresent(ApiModelProperty.class); if (annotationPresent) { // 获取注解值 String name = fields[i].getAnnotation(ApiModelProperty.class).value(); map.put(name, fields[i].getName()); } } } return map; } ```![在这里插入图片描述](https://www.www.zyiz.net/i/ll/?i=f9b36cf776a04c3fa0dc6fe481af65b7.png?,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L0FycnlfQ29kaW5n,size_16,color_FFFFFF,t_70#pic_center)