我已经在我的Maven项目中创建了两个Java文件,一个是POJO类,另一个是Java主类文件。我想将我的项目制作为可执行的jar文件,并希望使用java -jar命令在外部运行。请找到我的pom.xml文件<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>ElasticSearchUtility</groupId> <artifactId>ElasticSearchUtility</artifactId> <version>1.0.0-SNAPSHOT</version> <dependencies> <dependency> <groupId>org.elasticsearch</groupId> <artifactId>elasticsearch</artifactId> <version>6.1.2</version> </dependency> <dependency> <groupId>org.elasticsearch.client</groupId> <artifactId>elasticsearch-rest-high-level-client</artifactId> <version>6.1.2</version> </dependency> <dependency> <groupId>org.elasticsearch.client</groupId> <artifactId>rest</artifactId> <version>5.1.2</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-eclipse-plugin</artifactId> <version>2.9</version> <configuration> <downloadSources>true</downloadSources> <downloadJavadocs>false</downloadJavadocs> </configuration> </plugin> <!-- Set a compiler level --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin>在使用java -jar命令执行我的jar文件时。正在收到错误Error: Could not find or load main class com.es.utility.DocumentIndex请也找到我的项目结构:
2 回答
ibeautiful
TA贡献1993条经验 获得超5个赞
如果.jar中没有类,则可能是因为maven找不到它们。Maven中Java类的默认路径是src / main / java,尝试将其移到那里并再次运行Maven。
添加回答
举报
0/150
提交
取消