自学内容网 自学内容网

IDEA工具中Java语言写小工具遇到的问题

一:读取excel时遇到 org/apache/poi/ss/usermodel/WorkbookProvider
在这里插入图片描述
解决办法:
在pom.xml中把poi的引文包放在最前面即可(目前就算放在最后面也不报错了,不知道为啥
在这里插入图片描述
二:本地maven打包时,没有把项目引入的外部包打进去,导致把包放到jmeter一直找不到外部包,比如
在这里插入图片描述
解决办法:在pom.xml里加入一下以下代码即可把外部包全部打包进去

 <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.8.1</version>
                <configuration>

                    <source>9</source>
                    <target>9</target>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <!-- maven-shade-plugin用于创建一个可执行的JAR文件,包含项目的所有依赖项-->
                <artifactId>maven-shade-plugin</artifactId>
                <version>3.4.1</version>
                <executions>
                    <execution>
                        <phase>package</phase>
                        <goals>
                            <goal>shade</goal>
                        </goals>
                        <configuration>
                            <!-- 过滤META-INF文件,不然jmeter打不开-->
                            <filters>
                                <filter>
                                    <artifact>*:*</artifact>
                                    <excludes>
                                        <exclude>META-INF/**</exclude>
                                    </excludes>
                                </filter>
                            </filters>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
        </plugins>

    </build>

原文地址:https://blog.csdn.net/Caoqingqing521/article/details/140497402

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!