首页 > 其他 > 详细

please add a 'mainClass’ property

时间:2015-09-08 20:07:18      阅读:1950      评论:0      收藏:0      [点我收藏+]

when build an spring project with this command:

mvn spring-boot:run

 

there will may show an error message like this:

Failed to execute goal org.springframework.boot:spring-boot-maven-plugin:1.2.5.RELEASE:run (default-cli) on project gs-rest-service: Unable to find a suitable main class, please add a ‘mainClass’ property

 

ok,i was bothering by this case...so,,,google..google..and find this web page:

http://docs.spring.io/autorepo/docs/spring-boot/1.2.4.RELEASE/maven-plugin/usage.html

 

And ,this is the Solution(the bold part)

 

<plugin>

 

  <groupId>org.springframework.boot</groupId>

 

  <artifactId>spring-boot-maven-plugin</artifactId>

 

  <configuration>

 

    <mainClass>class_name</mainClass>

 

  </configuration>

 

</plugin>

 

please add a 'mainClass’ property

原文:http://www.cnblogs.com/duyiwuai/p/4792676.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!