【EasyExcel】复杂导出操作-自定义颜色样式等(版本3.1.x)

news2025/1/24 5:28:07

文章目录

  • 前言
  • 一、自定义拦截器
  • 二、自定义操作
    • 1.自定义颜色
    • 2.合并单元格
  • 三、复杂操作示例
    • 1.实体(使用了注解式样式):
    • 2.自定义拦截器
    • 3.代码
    • 4.最终效果


前言

本文简单介绍阿里的EasyExcel的复杂导出操作,包括自定义样式,根据数据合并单元格等。

点击查看EasyExcel官方文档


一、自定义拦截器

要实现复杂导出,靠现有的拦截器怕是不大够用,EasyExcel 已经有提供部分像是 自定义样式的策略HorizontalCellStyleStrategy
在这里插入图片描述在这里插入图片描述
在这里插入图片描述
通过源码,我们不难发现其原理正是实现了拦截器接口,使用了afterCellDispose方法,在数据写入单元格后会调用该方法,因此,需要进行复杂操作,我们需要自定义拦截器,在afterCellDispose方法进行逻辑处理,其中我们可以通过context参数获取到表,行,列及单元格数据等信息:
在这里插入图片描述

二、自定义操作

1.自定义颜色

由于WriteCellStyle 及CellStyle接口的设置单元格背景颜色方法setFillForegroundColor不支持自定义颜色,我在网上找了半天,以及询问阿里自家ai助手通义得到的答案都是往里塞一个XSSFColor这样的答案,但这个方法传参是一个short类型的index呀,是预设好的颜色,里面也没有找到其他重载方法。(这里针对的是导出xlsx文件)

在这里插入图片描述

而真正可以自定义颜色的是XSSFCellStyle类,XSSFCellStyle实现CellStyle接口,并重载了该方法,于是我们只需要在workbook.createCellStyle()的时候将其强转为XSSFCellStyle:

// 将背景设置成浅蓝色
XSSFColor customColor = new XSSFColor(new java.awt.Color(181, 198, 234), null);
XSSFCellStyle style = (XSSFCellStyle)workbook.createCellStyle();
style.setFillForegroundColor(customColor);
style.setFillPattern(FillPatternType.SOLID_FOREGROUND);
cell.setCellStyle(style);

在idea我们可以使用 ctrl + alt + 鼠标点击接口,来查看接口的所有实现类(HSSF是针对xls的):

在这里插入图片描述

然而在我们自定义的拦截器中,操作当前单元格样式时会无法生效,这是因为在3.1.x版本后有一个FillStyleCellWriteHandler拦截器,他会把OriginCellStyle和WriteCellStyle合并,会已WriteCellStyle样式为主,他的order是50000,而我们自定义的拦截器默认是0,因此我们修改的样式会被覆盖。
在这里插入图片描述
在这里插入图片描述
解决方法很简单,我们可以在我们的自定义拦截器重写order方法,将其值设置大于50000即可

  @Override
  public int order() {
      return 50001;
  }

如果你没有使用自定义拦截器(如HorizontalCellStyleStrategy )以及没有设置WriteCellStyle 样式,则还可以将ignoreFillStyle置为true,

 @Override
 public void afterCellDispose(CellWriteHandlerContext context) {
 	 context.setIgnoreFillStyle(true);
 	 // 做其他样式操作
 }
 

2.合并单元格

 ```java
 @Override
 public void afterCellDispose(CellWriteHandlerContext context) {
 	 // 判断当前为表头,不执行操作
     if (isHead) {
            log.info("\r\n当前为表头, 不执行操作");
            return;
     }
     // 获取当前单元格
     context.getCell()
     // 当前 Sheet
     Sheet sheet = cell.getSheet();
     // 当前单元格所在行索引
     int rowIndexCurr = cell.getRowIndex();
     // 当前单元格所在列索引
     int columnIndex = cell.getColumnIndex();
     // 当前单元格所在行的上一行索引
     int rowIndexPrev = rowIndexCurr - 1;
     // 当前单元格所在行的 Row 对象
     Row rowCurr = cell.getRow();
     // 当前单元格所在行的上一行 Row 对象
     Row rowPrev = sheet.getRow(rowIndexPrev);
     // 当前单元格的上一行同列单元格
     Cell cellPrev = rowPrev.getCell(columnIndex);
	 // 合并同列不同行的相邻两个单元格
     sheet.addMergedRegion(new CellRangeAddress(rowIndexPrev, rowIndexCurr,columnIndex, columnIndex));
 	 
 }
 

需要注意的是,如果要合并的单元格已经被其他单元格合并过,则不能直接使用这个合并方法,需要先解除合并,再进行组合合并:

 // 从 Sheet 中,获取所有合并区域
 List<CellRangeAddress> mergedRegions = sheet.getMergedRegions();
 // 判断是否合并过
 boolean merged = false;
 // 遍历合并区域集合
 for (int i = 0; i < mergedRegions.size(); i++) {
     CellRangeAddress cellAddresses = mergedRegions.get(i);
     // 判断 cellAddress 的范围是否是从 rowIndexPrev 到 cell.getColumnIndex()
     if (cellAddresses.isInRange(rowIndexPrev, cell.getColumnIndex())) {
         // 解除合并
         sheet.removeMergedRegion(i);
         // 设置范围最后一行,为当前行
         cellAddresses.setLastRow(rowIndexCurr);
         // 重新进行合并
         sheet.addMergedRegion(cellAddresses);
         merged = true;
         break;
     }
 }
 // merged=false,表示当前单元格为第一次合并
 if (!merged) {
     CellRangeAddress cellAddresses = new CellRangeAddress(rowIndexPrev, rowIndexCurr, cell.getColumnIndex(), cell.getColumnIndex());
     sheet.addMergedRegion(cellAddresses);
 }

三、复杂操作示例

自定义拦截器代码如下(示例):

1.实体(使用了注解式样式):

package com.mhqs.demo.tool.easyExcel.entity;


import com.alibaba.excel.annotation.ExcelProperty;
import com.alibaba.excel.annotation.write.style.ColumnWidth;
import com.alibaba.excel.annotation.write.style.ContentFontStyle;
import com.alibaba.excel.annotation.write.style.HeadFontStyle;
import com.alibaba.excel.annotation.write.style.HeadRowHeight;
import lombok.Data;
import lombok.EqualsAndHashCode;

import java.math.BigDecimal;

/**
 * 账单实体类
 * @author 棉花
 * */
@Data
@EqualsAndHashCode(callSuper = false)
@HeadFontStyle(fontHeightInPoints = 10)
@HeadRowHeight(27)
@ColumnWidth(13)
@ContentFontStyle(fontName = "宋体",fontHeightInPoints = 11)
public class DemoEntity extends EasyExcelEntity {

    @ExcelProperty({"账期"})
    private String settlePeriod;

    @ExcelProperty({"服务商"})
    private String stockCreatorMchid;

    @ExcelProperty({"地区"})
    private String place;

    @ExcelProperty({"金额(元)"})
    private BigDecimal consumeAmount;

    public DemoEntity(String settlePeriod, String stockCreatorMchid,String place, BigDecimal consumeAmount){
        this.settlePeriod = settlePeriod;
        this.stockCreatorMchid = stockCreatorMchid;
        this.place = place;
        this.consumeAmount = consumeAmount;
    }

}


2.自定义拦截器

package com.mhqs.demo.tool.easyExcel.handler;

import com.alibaba.excel.EasyExcel;
import com.alibaba.excel.ExcelWriter;
import com.alibaba.excel.metadata.Head;
import com.alibaba.excel.metadata.data.WriteCellData;
import com.alibaba.excel.util.StyleUtil;
import com.alibaba.excel.write.handler.CellWriteHandler;
import com.alibaba.excel.write.metadata.WriteSheet;
import com.alibaba.excel.write.metadata.holder.WriteSheetHolder;
import com.alibaba.excel.write.metadata.holder.WriteTableHolder;
import com.alibaba.excel.write.metadata.style.WriteCellStyle;
import com.mhqs.demo.tool.easyExcel.entity.DemoEntity;
import org.apache.poi.ss.usermodel.*;
import org.apache.poi.ss.util.CellRangeAddress;
import org.apache.poi.xssf.usermodel.XSSFCellStyle;
import org.apache.poi.xssf.usermodel.XSSFColor;

import java.math.BigDecimal;
import java.util.*;

/**
 * @author bcb
 * 账单导出样式处理
 */
public class CustomCellWriteHandler implements CellWriteHandler {

    /**
     * 自定义颜色
     */
    private final java.awt.Color color;
    /**
     * 自定义颜色样式
     */
    private CellStyle colorfulCellStyle;
    /**
     * 自定义特殊金额样式
     */
    private CellStyle specialCellStyle;
    /**
     * 头样式
     */
    private final WriteCellStyle headWriteCellStyle;

    /**
     * 内容样式
     */
    private final WriteCellStyle contentWriteCellStyle;

    /**
     * 头样式(可自定义颜色)
     */
    private CellStyle headCellStyle;

    /**
     * 内容样式(可自定义颜色)
     */
    private CellStyle contentCellStyle;

    public CustomCellWriteHandler(WriteCellStyle headWriteCellStyle,WriteCellStyle contentWriteCellStyle, java.awt.Color color) {
        this.headWriteCellStyle = headWriteCellStyle;
        this.contentWriteCellStyle = contentWriteCellStyle;
        this.color = color;
    }

    @Override
    public void beforeCellCreate(WriteSheetHolder writeSheetHolder, WriteTableHolder writeTableHolder, Row row, Head head, Integer columnIndex, Integer relativeRowIndex, Boolean isHead) {
        // 在创建单元格之前的操作(如果需要)
        Workbook workbook = writeSheetHolder.getSheet().getWorkbook();
        if (colorfulCellStyle == null) {
            colorfulCellStyle = createColorfulCellStyle(workbook);
        }
        // 合并样式(以WriteCellStyle为主)
        headCellStyle = StyleUtil.buildCellStyle(workbook, colorfulCellStyle, headWriteCellStyle);
        contentCellStyle = StyleUtil.buildCellStyle(workbook, workbook.createCellStyle(), contentWriteCellStyle);

    }
    /*
    * 创建自定义颜色样式
    */
    private CellStyle createColorfulCellStyle(Workbook workbook) {
        XSSFColor customColor = new XSSFColor(color, null);
        XSSFCellStyle style = (XSSFCellStyle)workbook.createCellStyle();
        // 设置自定义颜色
        style.setFillForegroundColor(customColor);
        style.setFillPattern(FillPatternType.SOLID_FOREGROUND);
        // 设置边框
        style.setBorderTop(BorderStyle.THIN);
        style.setBorderBottom(BorderStyle.THIN);
        style.setBorderLeft(BorderStyle.THIN);
        style.setBorderRight(BorderStyle.THIN);
        // 设置垂直对齐方式
        style.setVerticalAlignment(VerticalAlignment.CENTER);
        // 设置水平对齐方式
        style.setAlignment(HorizontalAlignment.CENTER);
        return style;
    }

    /*
     * 创建自定义特殊金额样式
     */
    private CellStyle createSpecialCellStyle(Workbook workbook) {
        if (specialCellStyle == null) {
            XSSFCellStyle style = (XSSFCellStyle)createColorfulCellStyle(workbook);
            Font font = workbook.createFont();
            // 字体加粗
            font.setBold(true);
            style.setFont(font);
            specialCellStyle = style;
        }
        return specialCellStyle;
    }


    /**
     * 在 Cell 写入后处理
     *
     * @param writeSheetHolder
     * @param writeTableHolder
     * @param cellDataList
     * @param cell               当前 Cell
     * @param head
     * @param relativeRowIndex   表格内容行索引,从除表头的第一行开始,索引为0
     * @param isHead             是否是表头,true表头,false非表头
     */
    @Override
    public void afterCellDispose(WriteSheetHolder writeSheetHolder, WriteTableHolder writeTableHolder,
                                 List<WriteCellData<?>> cellDataList, Cell cell, Head head, Integer relativeRowIndex, Boolean isHead) {
        // 当前 Sheet
        Sheet sheet = cell.getSheet();
        // 判断当前为表头,执行对应样式操作
        if (isHead) {
            cell.setCellStyle(headCellStyle);
        } else {
            cell.setCellStyle(contentCellStyle);
        }
        // 判断当前为表头,不执行操作
        if (isHead || relativeRowIndex == 0) {
            return;
        }
        int columnIndex = cell.getColumnIndex();
        // 当前 Cell 所在行索引
        int rowIndexCurr = cell.getRowIndex();
        // 当前 Cell 所在行的上一行索引
        int rowIndexPrev = rowIndexCurr - 1;
        // 当前 Cell 所在行的 Row 对象
        Row rowCurr = cell.getRow();
        // 当前 Cell 所在行的上一行 Row 对象
        Row rowPrev = sheet.getRow(rowIndexPrev);
        // 当前单元格的上一行同列单元格
        Cell cellPrev = rowPrev.getCell(columnIndex);
        // 当前单元格的值
        Object cellValueCurr = cell.getCellType() == CellType.STRING ? cell.getStringCellValue() : cell.getNumericCellValue();
        if (columnIndex == 3 && cellValueCurr != null && (double)cellValueCurr > 200) {
            // 判断金额大于200就设置特定颜色并加粗,并将上一列同一行的数据也设置特定颜色
            CellStyle cellStyle = createSpecialCellStyle(sheet.getWorkbook());
            cell.setCellStyle(cellStyle);
            // 当前单元格的同行上一列单元格
            Cell cellPreC = rowCurr.getCell(columnIndex - 1);
            cellPreC.setCellStyle(colorfulCellStyle);

        }
        // 上面单元格的值
        Object cellValuePrev = cellPrev.getCellType() == CellType.STRING ? cellPrev.getStringCellValue() : cellPrev.getNumericCellValue();
        /*
         * 只判断前两列相同行数据
         */
        if (columnIndex != 0 && columnIndex != 1) {
            return;
        }
        // 判断当前单元格与上面单元格是否相等,不相等不执行操作
        if (!cellValueCurr.equals(cellValuePrev)) {
            return;
        }
        /*
         * 当第一列上下两个单元格不一样时,说明不是一个账期数据
         */
        if (!rowPrev.getCell(0).getStringCellValue().equals(rowCurr.getCell(0).getStringCellValue())) {
            return;
        }
        // 从 Sheet 中,获取所有合并区域
        List<CellRangeAddress> mergedRegions = sheet.getMergedRegions();
        // 是否合并过
        boolean merged = false;
        // 遍历合并区域集合
        for (int i = 0; i < mergedRegions.size(); i++) {
            CellRangeAddress cellAddresses = mergedRegions.get(i);
            //判断 cellAddress 的范围是否是从 rowIndexPrev 到 cell.getColumnIndex()
            if (cellAddresses.isInRange(rowIndexPrev, columnIndex)) {
                // 从集合中移除
                sheet.removeMergedRegion(i);
                // 设置范围最后一行,为当前行
                cellAddresses.setLastRow(rowIndexCurr);
                // 重新添加到 Sheet 中
                sheet.addMergedRegion(cellAddresses);
                // 已完成合并
                merged = true;
                break;
            }
        }
        // merged=false,表示当前单元格为第一次合并
        if (!merged) {
            CellRangeAddress cellAddresses = new CellRangeAddress(rowIndexPrev, rowIndexCurr, columnIndex, columnIndex);
            sheet.addMergedRegion(cellAddresses);
        }
    }

    /**
     * 获取当前处理器优先级
     */
    @Override
    public int order() {
        return 50001;
    }


}

3.代码



  public static void main(String[] args) {

      String fileName = "D:\\temp\\账单.xlsx";
      // 设置 Cell 样式
      WriteCellStyle writeCellStyle = new WriteCellStyle();
      // 设置垂直对齐方式
      writeCellStyle.setVerticalAlignment(VerticalAlignment.CENTER);
      // 设置水平对齐方式
      writeCellStyle.setHorizontalAlignment(HorizontalAlignment.CENTER);
      // 设置边框
      writeCellStyle.setBorderTop(BorderStyle.THIN);
      writeCellStyle.setBorderBottom(BorderStyle.THIN);
      writeCellStyle.setBorderLeft(BorderStyle.THIN);
      writeCellStyle.setBorderRight(BorderStyle.THIN);
      // 自定义颜色
      java.awt.Color color = new java.awt.Color(181, 198, 234);
      List<DemoEntity> dataList = new ArrayList<>();
      for (int i = 0; i < 5; i++) {
          dataList.add(new DemoEntity("202301","服务商" + i%2,"地区" + i,new BigDecimal(i * 100)));
      }
      dataList.sort(Comparator.comparing(DemoEntity::getSettlePeriod).thenComparing(DemoEntity::getStockCreatorMchid));

      ExcelWriter excelWriter = EasyExcel.write(fileName, DemoEntity.class).build();
      WriteSheet writeSheet = EasyExcel.writerSheet(0, "账单")
              .registerWriteHandler(new CustomCellWriteHandler(null,writeCellStyle,color))
              .build();
      excelWriter.write(dataList, writeSheet);
	// 需要多sheet则可以继续
	// WriteSheet writeSheet2 = EasyExcel.writerSheet(1, "第二个sheet")

      excelWriter.finish();
  }



4.最终效果

在这里插入图片描述

待续…


参考文章:
easyexcel 3.1.0+,设置RBG背景颜色
EasyExcel导出多sheet并设置单元格样式
EasyExcel的CellWriteHandler注入CellStyle不生效

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.coloradmin.cn/o/2242287.html

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

Linux(CentOS)安装达梦数据库 dm8

CentOS版本&#xff1a;CentOS 7 达梦数据库版本&#xff1a;dm8 一、获取 dm8 安装文件 1、下载安装文件 打开达梦官网&#xff1a;https://www.dameng.com/ 下载的文件 解压后的文件 2、上传安装文件到 CentOS 使用FinalShell远程登录工具&#xff0c;并且使用 root 用户…

fastapi 调用ollama之下的sqlcoder模式进行对话操作数据库

from fastapi import FastAPI, HTTPException, Request from pydantic import BaseModel import ollama import mysql.connector from mysql.connector.cursor import MySQLCursor import jsonapp FastAPI()# 数据库连接配置 DB_CONFIG {"database": "web&quo…

如何监控Kafka消费者的性能指标?

要监控 Kafka 消费者性能指标&#xff0c;可以遵循以下最佳实践和策略&#xff1a; 关键性能指标监控&#xff1a; 消息吞吐量&#xff1a;监控消费者和生产者的吞吐量&#xff0c;以评估数据处理和消费的效率。延迟&#xff1a;监控端到端的延迟&#xff0c;例如通过比较消息产…

【LINUX相关】

一、Linux怎么进行查看日志&#xff1f; 首先得问问开发项目日志存放在哪里&#xff0c;可以使用多种命令来查看日志。常用的命令包括tail、cat、less和grep等。例如:1、使用tail命令可以实时查看日志文件的最新内容&#xff1a;tail -f log_file&#xff0c; 2、使用cat命令可…

IT运维的365天--019 用php做一个简单的文件上传工具

前情提要&#xff1a;朋友的工作室&#xff0c;有几个网站分布在不同的服务器上&#xff0c;要经常进行更新&#xff0c;之前是手动复制压缩包到各个服务器去更新&#xff08;有写了自动更新的Shell脚本&#xff09;。但还是觉得太麻烦&#xff0c;每次还要手动传输压缩包到各个…

计算机网络 (4)计算机网络体系结构

前言 计算机网络体系结构是指计算机网络层次结构模型&#xff0c;它是各层的协议以及层次之间的端口的集合。这一体系结构为计算机网络及其部件应完成的功能提供了精确定义&#xff0c;并规定了这些功能应由何种硬件或软件来实现。 一、主流模型 计算机网络体系结构存在多种模型…

C++- 基于多设计模式下的同步异步日志系统

第一个项目:13万字,带源代码和详细步骤 目录 第一个项目:13万字,带源代码和详细步骤 1. 项目介绍 2. 核心技术 3. 日志系统介绍 3.1 为什么需要⽇志系统 3.2 ⽇志系统技术实现 3.2.1 同步写⽇志 3.2.2 异步写⽇志 4.知识点和单词补充 4.1单词补充 4.2知识点补充…

小程序租赁系统打造便捷租赁体验助力共享经济发展

内容概要 小程序租赁系统是一个极具创新性的解决方案&#xff0c;它通过简化租赁过程&#xff0c;让物品的共享变得便捷流畅。对于那些有闲置物品的用户来说&#xff0c;他们可以轻松发布自己的物品&#xff0c;让其他需要的人快速找到并租借。而对于找东西的人来说&#xff0…

EXCEL 或 WPS 列下划线转驼峰

使用场景&#xff1a; 需要将下划线转驼峰&#xff0c;直接在excel或wps中第一行使用公式&#xff0c;然后快速刷整个列格式即可。全列工下划线转为格式&#xff0c;使用效果如下&#xff1a; 操作步骤&#xff1a; 第一步&#xff1a;在需要显示驼峰的一列&#xff0c;复制以…

【SpringBoot】公共字段自动填充

问题引入 JavaEE开发的时候&#xff0c;新增字段&#xff0c;修改字段大都会涉及到创建时间(createTime)&#xff0c;更改时间(updateTime)&#xff0c;创建人(craeteUser)&#xff0c;更改人(updateUser)&#xff0c;如果每次都要自己去setter()&#xff0c;会比较麻烦&#…

华为云租户网络-用的是隧道技术

1.验证租户网络是vxlan 2.验证用OVS 2.1控制节点VXLAN 本端ip&#xff08;local ip&#xff09;192.168.31.8 2.2计算节点VXLAN 本端ip&#xff08;local ip&#xff09;192.168.31.11 计算节点用的是bond0做隧道网络 2.3查看bond文件是否主备模式

网络编程-002-UDP通信

1.UDP通信的简单介绍 1.1不需要通信握手,无需维持连接,网络带宽需求较小,而实时性要求高 1.2 包大小有限制,不发大于路径MTU的数据包 1.3容易丢包 1.4 可以实现一对多,多对多 2.客户端与服务端=发送端与接收端 代码框架 收数据方一般都是客户端/接收端 3.头文件 #i…

从PE结构到LoadLibrary

从PE结构到LoadLibrary PE是Windows平台主流可执行文件格式,.exe , .dll, .sys, .com文件都是PE格式 32位的PE文件称为PE32&#xff0c;64位的称为PE32&#xff0c;PE文件格式在winnt.h头中有着详细的定义&#xff0c;PE文件头包含了一个程序在运行时需要的所有信息&#xff…

AntFlow:一款高效灵活的开源工作流引擎

AntFlow 是一款功能强大、设计优雅的开源工作流引擎&#xff0c;其灵感来源于钉钉的工作流设计理念&#xff0c;旨在为企业和开发者提供灵活、高效的工作流解决方案。AntFlow 支持复杂的业务流程管理&#xff0c;具有高度可定制性&#xff0c;且拥有现代化的前端设计&#xff0…

智慧安防丨以科技之力,筑起防范人贩的铜墙铁壁

近日&#xff0c;贵州省贵阳市中级人民法院对余华英拐卖儿童案做出了一审宣判&#xff0c;判处其死刑&#xff0c;剥夺政治权利终身&#xff0c;并处没收个人全部财产。这一判决不仅彰显了法律的威严&#xff0c;也再次唤起了社会对拐卖儿童犯罪的深切关注。 余华英自1993年至2…

python机器人Agent编程——多Agent框架的底层逻辑(上)

目录 一、前言二、两个核心概念2.1 Routines&#xff08;1&#xff09;清晰的Prompt&#xff08;2&#xff09;工具调用json schema自动生成&#xff08;3&#xff09;解析模型的toolcall指令&#xff08;4&#xff09;单Agent的循环决策与输出 PS.扩展阅读ps1.六自由度机器人相…

【大语言模型】ACL2024论文-14 任务:不可能的语言模型

【大语言模型】ACL2024论文-14 任务&#xff1a;不可能的语言模型 目录 文章目录 【大语言模型】ACL2024论文-14 任务&#xff1a;不可能的语言模型目录摘要研究背景问题与挑战如何解决创新点算法模型实验效果重要数据与结论推荐阅读指数和推荐理由 后记 任务&#xff1a;不可能…

redis linux 安装

下载解压 https://download.redis.io/releases/ tar -zvxf ----redis-7.4.1编译 进入目录下 # redis 依赖c yum install gcc-cmake可能会有问题&#xff0c;所以记得换源# 安装到 /usr/local/redis make PREFIX/usr/local/redis installcd src ./redis-serverredis.confi…

计算机毕业设计Hadoop+大模型空气质量预测 空气质量可视化 空气质量分析 空气质量爬虫 Spark 机器学习 深度学习 Django 大模型

温馨提示&#xff1a;文末有 CSDN 平台官方提供的学长联系方式的名片&#xff01; 温馨提示&#xff1a;文末有 CSDN 平台官方提供的学长联系方式的名片&#xff01; 温馨提示&#xff1a;文末有 CSDN 平台官方提供的学长联系方式的名片&#xff01; 作者简介&#xff1a;Java领…

云原生之运维监控实践-使用Telegraf、Prometheus与Grafana实现对InfluxDB服务的监测

背景 如果你要为应用程序构建规范或用户故事&#xff0c;那么务必先把应用程序每个组件的监控指标考虑进来&#xff0c;千万不要等到项目结束或部署之前再做这件事情。——《Prometheus监控实战》 去年写了一篇在Docker环境下部署若依微服务ruoyi-cloud项目的文章&#xff0c;当…