SpringBoot、EasyPoi、Echarts 实现文档导入、出、图表显示 (饼状图、柱状图) 保姆级教程

时间:2025-03-31 08:11:06
  • <?xml version="1.0" encoding="UTF-8"?>
  • <project xmlns="/POM/4.0.0" xmlns:xsi="http:///2001/XMLSchema-instance"
  • xsi:schemaLocation="/POM/4.0.0 /xsd/maven-4.0.">
  • <modelVersion>4.0.0</modelVersion>
  • <parent>
  • <groupId></groupId>
  • <artifactId>spring-boot-starter-parent</artifactId>
  • <version>2.7.5</version>
  • <relativePath/> <!-- lookup parent from repository -->
  • </parent>
  • <groupId></groupId>
  • <artifactId>excel</artifactId>
  • <version>0.0.1-SNAPSHOT</version>
  • <name>excel</name>
  • <description>excel</description>
  • <properties>
  • <>1.8</>
  • </properties>
  • <dependencies>
  • <dependency>
  • <groupId></groupId>
  • <artifactId>spring-boot-starter-thymeleaf</artifactId>
  • </dependency>
  • <dependency>
  • <groupId></groupId>
  • <artifactId>spring-boot-starter-web</artifactId>
  • </dependency>
  • <dependency>
  • <groupId></groupId>
  • <artifactId>mysql-connector-j</artifactId>
  • <scope>runtime</scope>
  • </dependency>
  • <dependency>
  • <groupId></groupId>
  • <artifactId>lombok</artifactId>
  • <optional>true</optional>
  • </dependency>
  • <dependency>
  • <groupId></groupId>
  • <artifactId>spring-boot-starter-test</artifactId>
  • <scope>test</scope>
  • </dependency>
  • <dependency>
  • <groupId></groupId>
  • <artifactId>easypoi-spring-boot-starter</artifactId>
  • <version>4.1.2</version>
  • </dependency>
  • <!--poi-->
  • <dependency>
  • <groupId></groupId>
  • <artifactId>easypoi-base</artifactId>
  • <version>4.1.0</version>
  • </dependency>
  • <dependency>
  • <groupId></groupId>
  • <artifactId>easypoi-web</artifactId>
  • <version>4.1.0</version>
  • </dependency>
  • <dependency>
  • <groupId></groupId>
  • <artifactId>easypoi-annotation</artifactId>
  • <version>4.1.0</version>
  • </dependency>
  • <dependency>
  • <groupId></groupId>
  • <artifactId>mybatis-plus-boot-starter</artifactId>
  • <version>3.4.2</version>
  • </dependency>
  • <dependency>
  • <groupId></groupId>
  • <artifactId>fastjson</artifactId>
  • <version>1.2.83</version>
  • </dependency>
  • </dependencies>
  • <build>
  • <plugins>
  • <plugin>
  • <groupId></groupId>
  • <artifactId>spring-boot-maven-plugin</artifactId>
  • <configuration>
  • <excludes>
  • <exclude>
  • <groupId></groupId>
  • <artifactId>lombok</artifactId>
  • </exclude>
  • </excludes>
  • </configuration>
  • </plugin>
  • </plugins>
  • </build>
  • </project>