`
kong6001
  • 浏览: 142153 次
  • 性别: Icon_minigender_1
  • 来自: 广东广州
社区版块
存档分类
最新评论

Maven-maven项目 could not find the main class

 
阅读更多

非标准Maven项目运行java类时会报 could not find the main class,由于Maven的输出路径和Eclipse的不一样,所以导致该问题,设置一下Maven的输出路径即可

 

 <build>	 
 <sourceDirectory>src</sourceDirectory>
	  <outputDirectory>WebContent/WEB-INF/classes</outputDirectory>
	  <testSourceDirectory>test</testSourceDirectory>
	  <testOutputDirectory>classes</testOutputDirectory>
</build>
 
分享到:
评论

相关推荐

    xjar-maven-plugin:XJar-Maven-Plugin是对XJar的一个Maven插件封装,实现可通过Maven命令或绑定在Maven的生命周期之中执行,以更便捷的方式集成XJar

    XJar-Maven-Plugin是对的一个Maven插件封装,实现可通过Maven命令或绑定在Maven的生命周期之中执行,从而更加便捷的方式集成了 。 GitHub: : 什么是XJar XJar是基于对JAR包内部资源的加密以及扩展ClassLoader来...

    打jar包注意点.docx

    1. **`&lt;mainClass&gt;`**: 指定运行JAR包时的主类,即程序的入口点。必须提供完整的类名,包括包名。 2. **`&lt;addClasspath&gt;true&lt;/addClasspath&gt;`**: 表示需要在生成的JAR文件中包含一个类路径,使得运行时能够找到依赖...

    aspose-words-15.8.0.rar

    在Maven项目中,引入此POM文件意味着我们可以方便地将Aspose.Words作为依赖添加到我们的项目中,从而快速地在代码中调用Aspose.Words的功能。通过以下Maven依赖设置,可以将Aspose.Words 15.8.0集成到Java项目中: ...

    commons-httpclient-3.0.jar JAVA中使用HttpClient可以用到

    public static void main(String[] args) throws Exception { HttpClient httpClient = new HttpClient(); GetMethod getMethod = new GetMethod("http://example.com"); int statusCode = httpClient....

    IDEA打包jar-解决找不到或无法加载主类 main的问题

    &lt;mainClass&gt;Main&lt;/mainClass&gt; &lt;!-- 此处填入你的主类全限定名 --&gt; ``` 确保`&lt;mainClass&gt;`标签内的值是你的主类的全限定名,例如,如果你的主类是`com.example.MyApp`,那么你应该填写`...

    kotlin-metadata,.zip

    "kotlin-metadata"库的主要功能在于解析和操作Kotlin编译器生成的`.class`文件中的元数据。这些元数据以特定的二进制格式存储,直接读取可能会比较困难。通过使用此库,开发者可以以类型安全的方式访问和处理这些...

    积分-Aspose.Words21.11 简单无水印 jar包+使用说明

    - **集成**:在Java项目中,通过Maven或Gradle引入Aspose.Words的依赖。对于21.11版本,需要在pom.xml或build.gradle文件中添加对应的依赖项。 - **API调用**:使用`com.aspose.words.*`包下的类和方法来执行各种...

    人大金仓驱动包kingbasejdbc.jar V8.6.0、8.8.0驱动jar包

    kingbase JDBC 8.6.0 驱动jar包 kingbase JDBC 8.8.0 驱动...driver-class-name: com.kingbase8.Driver url: jdbc:kingbase8://127.0.0.1:54321/template1?characterEncoding=utf8 username: system password: 123123

    linux上实现视频截图

    你可以通过Maven或Gradle来管理依赖,例如,在Maven的pom.xml文件中添加以下依赖: ```xml &lt;groupId&gt;org.bytedeco &lt;artifactId&gt;javacpp &lt;version&gt;1.5.6 &lt;groupId&gt;org.bytedeco &lt;artifactId&gt;ffmpeg-platform...

    commons-beanutils-1.9.4

    如果你使用Maven,可以在`pom.xml`文件中添加以下依赖: ```xml &lt;groupId&gt;commons-beanutils &lt;artifactId&gt;commons-beanutils &lt;version&gt;1.9.4 ``` 然后,你可以开始使用BeanUtils提供的API,例如设置一个...

    gbase数据库连接驱动包8.3.81.53.rar

    例如,在Maven项目中,可以在pom.xml文件中添加如下依赖: ```xml &lt;groupId&gt;com.nudt&lt;/groupId&gt; &lt;artifactId&gt;gbase-connector-java &lt;version&gt;8.3.81.53-build52.8 ``` 有了正确的依赖后,就可以在Java代码中...

    Android-现有Android项目集成ReactNative

    public class MainActivity extends ReactActivity { @Override protected String getMainComponentName() { return "YourAppName"; // 这是你的React Native应用的主要组件名 } } ``` 4. **更新...

    jeecg-boot环境搭建

    1. Node Sass could not find a binding for your current environment: Windows 64-bit with Node.js 7.x:解决方法:npm rebuild node-sass 2. ERROR com.alibaba.druid.pool.DruidDataSource:936 - init ...

    java连接mysql的jar包

    System.out.println("Could not find the driver."); e.printStackTrace(); } catch (SQLException e) { System.out.println("Error connecting to the database."); e.printStackTrace(); } } } ``` 在上述...

    达梦 6 数据库驱动 jar 包

    System.out.println("Could not find the driver."); e.printStackTrace(); } catch (SQLException e) { System.out.println("Failed to connect to the database."); e.printStackTrace(); } } } ``` 在上述...

    java连接SQLServer2008代码和jar包

    System.out.println("Could not find the driver."); e.printStackTrace(); } catch (SQLException e) { System.out.println("Error connecting to the database."); e.printStackTrace(); } } } ``` 在上述...

    SQL Server连接JDBC需要的jar包

    System.out.println("Could not find the driver."); e.printStackTrace(); } catch (SQLException e) { System.out.println("Error connecting to the database."); e.printStackTrace(); } } } ``` 在这个...

    java连接MSSQL的jar包

    System.out.println("Error: Could not find driver."); e.printStackTrace(); } catch (SQLException e) { System.out.println("Error connecting to the database:"); e.printStackTrace(); } } } ``` 这段...

Global site tag (gtag.js) - Google Analytics