我在netbeans中编译maven项目时遇到了一些问题。
当我在Netbeans中运行它时,它运行正常,但是当我编译它时,我收到了 错误
"发生了jni错误请检查您的安装并再试一次"
这是我的pom.xml
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>pmi</groupId>
<artifactId>PSSynchro</artifactId>
<version>1.0</version>
<packaging>jar</packaging>
<dependencies>
<dependency>
<groupId>com.microsoft.sqlserver</groupId>
<artifactId>mssql-jdbc</artifactId>
<version>6.1.0.jre8</version>
</dependency>
</dependencies>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.0.0</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<transformers>
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<mainClass>pmi.pssynchro.Main</mainClass>
</transformer>
</transformers>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
如果我删除此部分
<dependencies>
<dependency>
<groupId>com.microsoft.sqlserver</groupId>
<artifactId>mssql-jdbc</artifactId>
<version>6.1.0.jre8</version>
</dependency>
</dependencies>
它有效,但有些功能,当然不是。
答案 0 :(得分:0)
了解 - 导致这种情况发生的原因,请分享完整的错误。从这些原因可能会发生错误
1)您的任何文件在编译时都存在,但在执行时无法访问
2)您需要交叉检查编译时和运行时环境&amp;阶级路径。
您也可以尝试这些解决方案。
像魅力一样工作。出于某种原因,JDK / JRE不起作用。
答案 1 :(得分:0)
那么, 为了使我编译的jar工作,我不得不从中删除4个文件。 在META-INF文件夹中,我不得不删除: MSFTSIG.SF,MSFTSIG.RSA,BCKEY.DSA,BCKEY.SF
看起来它们是签名文件。我不知道在编译过程中如何不包含它们。
无论如何我还改变了依赖
<dependencies>
<dependency>
<groupId>com.microsoft.sqlserver</groupId>
<artifactId>sqljdbc42</artifactId>
<version>4.2</version>
</dependency>
</dependencies>
但是errore仍然存在(除了jar更轻,我只需要从META -INF中删除2个文件)。