英文:
Unable to find a suitable main class, please add a 'mainClass' property -wrong classpath maybe?
问题
我在运行 mvn spring-boot:run 时收到上述错误。
更具体地说,mvn spring-boot:run 错误。
经过一些研究,我发现我需要在 pom 中像这样指定主类 pom property-start-class,我的主类路径是:path。
但我仍然得到这个错误:exception。
我在类路径(classpath)方面做错了什么吗?
英文:
I receive the above error when running mvn spring-boot:run
more specific mvn spring-boot:run error
after some research i found out that i have to specify the main class inside pom like this pom property-start-class the path of my mainclass is:path
and i still get this error:exception
am i doing something wrong with the classpath?
答案1
得分: 3
你可以从项目的根目录运行以下命令:
mvn clean package spring-boot:repackage
英文:
you can run this command from the root project:
mvn clean package spring-boot:repackage
答案2
得分: 0
没有问题的mvn spring-boot:run
但是如果你遇到错误,先运行mvn clean install
英文:
Nothing wrong with mvn spring-boot:run
However if you are getting an error, just run mvn clean install
first
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论