Error Log: type parameters of T cannot be determined; no unique maximal instance exists for ...

测试环境Maven编译工程时候报以下错误:

type parameters of <T>T cannot be determined; no unique maximal instance exists for type variable T with upper bounds int,java.lang.Object

而开发环境却编译正常,经查代码:

public <T> T selectOne(String statement);

public int countXXX() {
	...
	return selectOne("YYY");
}

发现countXXX()的返回类型int与selectOne的返回类型定义不一致。

网上有“升级Java版本”的解决方案。不过,这样的代码毕竟不严谨,一旦出现null,必然报错。

我的解决方案是修改代码,尽量不要报异常:

public int countXXX() {
	...
	Integer count = selectOne("YYY");
	return count == null ? -1 : count.intValue();
}
另外,也可以将countXXX()的返回类型int,修改为Integer。

你可能感兴趣的:(java)