阿里大鱼的maven打包问题
只要引用了阿里大鱼的sdk,就报下面的错,去掉调用阿里大鱼的sdk就可以正常打包编译,这什么问题?其实这个阿里大鱼的sdk,已经加入到lib下,并添加到项目中了,应该不存在找不到这个阿里大鱼的sdk的问题的
/Users/xxxxx/Eclipse.jee/JsonWeb.carquery/src/main/java/com/SiSoft/carquery/controller/DispatcherController.java:[1562,2] cannot find symbol [ERROR] symbol : class AlibabaAliqinFcSmsNumSendRequest [ERROR] location: class com.SiSoft.carquery.controller.DispatcherController [ERROR] /Users/xxxxx/Eclipse.jee/JsonWeb.carquery/src/main/java/com/SiSoft/carquery/controller/DispatcherController.java:[1562,45] cannot find symbol [ERROR] symbol : class AlibabaAliqinFcSmsNumSendRequest [ERROR] location: class com.SiSoft.carquery.controller.DispatcherController [ERROR] /Users/xxxxx/Eclipse.jee/JsonWeb.carquery/src/main/java/com/SiSoft/carquery/controller/DispatcherController.java:[1605,3] cannot find symbol [ERROR] symbol : class AlibabaAliqinFcSmsNumSendResponse [ERROR] location: class com.SiSoft.carquery.controller.DispatcherController [ERROR] -> [Help 1] [ERROR] [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch. [ERROR] Re-run Maven using the -X switch to enable full debug logging. [ERROR] [ERROR] For more information about the errors and possible solutions, please read the following articles: [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(9)
@laizhiming 阿里大鱼的答复如上。你知道怎么联系 落星?无奈了,手动打包吧,手动打包可以,但是,是多次手动打包成功了那么一回,不知道下次手动打包,会不会出现问题,阿里大鱼,好像有点坑,只能再看看,不行只能果断放弃阿里大鱼了
你也是这问题么?
@塔塔米 嗯
有解决办法了吗,楼主。
引用来自“黄大爷”的评论
lib下不行,必须通过pom管理
lib下不行,必须通过pom管理
谢谢兄弟的分享,阿里大鱼,被清理出项目了,等有空试试你的方案,感谢!
回复
兄弟对maven很熟悉,感谢指点,谢谢啦。 阿里大鱼的模板审核了,就不能编辑了,我也吐槽一下;而且help太不行了,都没有你这指点的到位,一下解决问题;
这个配置下maven 的pom文件就好 ,我的是web工程, 你可以参照下
<build>
<finalName>sms-mail</finalName>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.6</source>
<target>1.6</target>
<encoding>UTF-8</encoding>
<compilerArguments>
<extdirs>srcmainwebappWEB-INFlib</extdirs>
</compilerArguments>
</configuration>
</plugin>
</plugins>
</build>