阿里大鱼的maven打包问题

发布于 2021-11-28 17:22:21 字数 1552 浏览 886 评论 9

只要引用了阿里大鱼的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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(9

复古式 2021-12-02 10:28:29

@laizhiming 阿里大鱼的答复如上。你知道怎么联系 落星?无奈了,手动打包吧,手动打包可以,但是,是多次手动打包成功了那么一回,不知道下次手动打包,会不会出现问题,阿里大鱼,好像有点坑,只能再看看,不行只能果断放弃阿里大鱼了

囚你心 2021-12-02 10:28:22

你也是这问题么?

琴流音 2021-12-02 07:52:49

有解决办法了吗,楼主。

拥有 2021-12-02 02:57:35

引用来自“黄大爷”的评论

lib下不行,必须通过pom管理

反话 2021-12-01 23:27:15

lib下不行,必须通过pom管理

平定天下 2021-12-01 19:08:18

谢谢兄弟的分享,阿里大鱼,被清理出项目了,等有空试试你的方案,感谢!

孤檠 2021-12-01 04:53:47

回复
兄弟对maven很熟悉,感谢指点,谢谢啦。 阿里大鱼的模板审核了,就不能编辑了,我也吐槽一下;而且help太不行了,都没有你这指点的到位,一下解决问题;

月亮是我掰弯的 2021-11-29 19:06:45

这个配置下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>

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文