Maven安装

时间:2017-01-11 12:20:12

标签: java windows maven jar classnotfoundexception

我的问题(使用 MAVEN )只存在于Windows(不是Linux)而不存在于IDE(Eclipse)中

类别:

    ...

    System.out.println("Location of Tools --> " + VirtualMachine.class.getProtectionDomain().getCodeSource().getLocation());

    ...

例外:

        Exception in thread "main" java.lang.NoClassDefFoundError: com/sun/tools/attach/VirtualMachine
                at my.package.bootstrap(Controller.java:37)
                at my.package.main(Main.java:35)
        Caused by: java.lang.ClassNotFoundException: com.sun.tools.attach.VirtualMachine
                at java.net.URLClassLoader.findClass(URLClassLoader.java:381)
                at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
                at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:331)
                at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
                ... 2 more

我的环境:

Windows: Windows 10 (Here are the Problems!!!)
Linux: Xubuntu 16.04 (Works fine)
Java: 8 oracle (not openjdk!)
Maven (**using the maven-assembly-plugin for installing**)

我的项目架构:

My Project which using the com.sun.tools is a library: lib.jar
which gets used by Main Project: Main.jar.

I'm using maven to compile all of that into Main.jar

什么有效:

Linux Eclipse IDE: found
Linux - Shell: java -jar myjar.jar: found

Windows Eclipse IDE: found
--> Windows - Bash: /java_jdk_path/java -jar myjar.jar: _NOT_FOUND_

我的不是 -working-solutions,让它在main.jar中找到windows上的lib:

set %JAVA_HOME%  ... to jdk
set %JRE_HOME% ... to jre

我发现了许多变通办法,例如maven配置文件等,我测试了所有这些,但没有任何效果。一度 当我通过maven插件(mvn install ...)将com.sun.tools复制到JAR中时,我得到了它的工作。然后它奏效了。

但是我需要它来动态地找到com.sun.tools - 取决于操作系统linux和windows。

对我的后续步骤有何建议?我不知道我能做什么它有效。 在使用... java -jar Main.jar

执行它后在Windows上使用此tools.jar时,我总是会遇到此异常

目标:我想在任何我想要的文件夹上启动Main.jar(java -jar Main.jar)。

更新: 我添加了一个示例项目,对我来说完全没有这个错误。

只需创建一个新的Maven项目并将其添加到Main.java 和POM。使用以下命令安装:mvn install并且失败。 使用eclipse jar构建器,它的工作原理!??? WTF为什么?

代码:

    ...

    System.out.println("Location of Tools --> " + VirtualMachine.class.getProtectionDomain().getCodeSource().getLocation());

    ...

POM:

    <properties>
            <java.version>1.8</java.version>
            <maven.compiler.source>1.8</maven.compiler.source>
            <maven.compiler.target>1.8</maven.compiler.target>
    </properties>

    <dependencies>
        <dependency>
            <groupId>com.sun</groupId>
            <artifactId>tools</artifactId>
            <version>1.8</version>
            <scope>system</scope>
            <systemPath>${env.JAVA_HOME}/lib/tools.jar</systemPath>
        </dependency>
    </dependencies>

    <build>
            <plugins>
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-assembly-plugin</artifactId>
                    <version>3.0.0</version>
                    <configuration>
                        <outputDirectory>C:\Output\</outputDirectory>
                        <archive>
                            <manifest>
                                <mainClass>com.test.Main</mainClass>
                            </manifest>
                        </archive>
                        <descriptorRefs>
                            <descriptorRef>jar-with-dependencies</descriptorRef>
                        </descriptorRefs>
                        <appendAssemblyId>false</appendAssemblyId>
                    </configuration>
                    <executions>
                        <execution>
                            <id>make-assembly</id> <!-- this is used for inheritance merges -->
                            <phase>package</phase> <!-- bind to the packaging phase -->
                            <goals>
                                <goal>single</goal>
                            </goals>
                        </execution>
                    </executions>
                </plugin>
            </plugins>
    </build>

1 个答案:

答案 0 :(得分:0)

我知道它不是当前问题的解决方案,但我正在使用解决方法,我可以推荐给任何其他人。我现在正在使用https://github.com/oshi/oshi,因为它具有我需要的所有功能,并且想要使用com.sun.tools。

但无论如何,如果有人为这个maven安装(可能是maven {java.home} bug?)问题找到了解决方案,那将会很高兴。