gpt4 book ai didi

java - 我如何让 Maven 像 javac 一样发出编译错误?

转载 作者:行者123 更新时间:2023-11-30 11:11:51 26 4
gpt4 key购买 nike

在 Java 中,如果我的源代码中有一个方法调用没有提供正确的参数类型,或者如果我试图为一种类型的变量分配另一种不兼容类型的值,那么这将引发编译错误,因为它应该。但是,当使用 Maven (mvn) 时,编译错误类似于(取自真实代码)

error: method put in interface Map<K,V> cannot be applied to given types;

句号。然而,当使用 javac (javac) 时,编译错误类似于

error: method put in interface Map<K,V> cannot be applied to given types;

elements.put(coords, val);}
^
required: Integer[],T
found: int[],T
reason: actual argument int[] cannot be converted to Integer[] by method invocation conversion
where T,K,V are type-variables:
T extends Object declared in class Grid
K extends Object declared in interface Map
V extends Object declared in interface Map

我认为这更有帮助。

如何让 Maven 像 javac 一样发出编译错误?特别是,我如何让它提供更多上下文信息?

顺便说一下,mvn 的 -e 和 -X 开关并没有解决这个问题。

最佳答案

您可能正在使用 2.5.1 或更低版本的 Maven 编译器插件。

如果您使用 3.0 版,您实际上会得到更详细的错误消息:

[ERROR] required: java.lang.String,java.lang.String
[ERROR] found: int,int
[ERROR] reason: actual argument int cannot be converted to java.lang.String by method invocation conversion

关于java - 我如何让 Maven 像 javac 一样发出编译错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27197818/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com