码迷,mamicode.com
首页 > 其他好文 > 详细

please add a 'mainClass’ property

时间:2015-09-08 20:07:23      阅读:723      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!