Unable to find a single main class from the following candidates

Unable to find a single main class from the following candidates_第1张图片 

1.遇到的问题

进行mvn package报错

Unable to find a single main class from the following candidates [com.esoon.storage.WebdavServerApplication, com.esoon.storage.utils.DateTimeUtil]
 

2. 解决办法 

Unable to find a single main class from the following candidates_第2张图片 

 去掉DateTimeUtil中的main方法

 3.终极解决办法

在pom.xml中加入如下代码

   
        com.gary.WebdavServerApplication
        UTF-8
        UTF-8
    

 

你可能感兴趣的:(java,前端,服务器)