2
    cannot find symbol
    [ERROR] symbol  : method compare(java.lang.Integer,java.lang.Integer)
    [ERROR] location: class java.lang.Integer

第一次尝试在 linux 上运行 maven 后出现奇怪的编译错误。在我的 Windows 机器上编译得很好。任何想法?

4

1 回答 1

3

这是因为 maven 使用的是 linux 的 1.6 编译器和 windows 上的 1.7。Java 7 中添加了静态比较(Integer,Integer)。

于 2013-09-14T11:23:10.830 回答