Maven編譯jar出現:沒法肯定 T 的類型參數的異常的緣由和處理方案

出錯場景:java

  代碼:web

public class JsonUtil {

	private static final Gson gson = new GsonBuilder().setDateFormat("yyyy-MM-dd HH:mm:ss").create();

	public static String toJson(Object obj) {
		return gson.toJson(obj);
	}

	public static <T> T fromJson(String json, Class<T> classOfT) {
		return gson.fromJson(json, classOfT);
	}

	@SuppressWarnings("unchecked")
	public static <T> T fromJson(String json, Type typeOfT) {
		return gson.fromJson(json, typeOfT);
	}
}

  在本地eclipse下編譯是沒有任何問題。shell

  maven編譯配置:apache

			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-compiler-plugin</artifactId>
				<version>2.3</version>
				<configuration>
					<source>1.6</source>
					<target>1.6</target>
					<encoding>UTF-8</encoding>
				</configuration>
			</plugin>

  異常信息:json

[ERROR] 
[ERROR] /opt/web/iwork_shell/release_jar_workspace/831881fe-9cbe-4444-99d9-5667fcb96263/workspace/src/main/java/com/bj58/biz/utility/JsonUtil.java:[26,22] 沒法肯定 T 的類型參數;對於上限爲 T,java.lang.Object 的類型變量 T,不存在惟一最大實例
[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 
英文錯誤信息:
incompatible types;
found: ........... 
required:...........  

  問題緣由:服務器

  用Maven編譯,jdk版本已經指定爲1.6版,在本地mavan編譯打包也一切正常。在maven打包服務器上打包就會出以上的異常信息。發現打包服務器上的jdk版本是jdk1.6.0_16版本,通過查找相關資料確認,該問題是jdk1.6.0_16版本一個bug致使的,這是一個確認的錯誤:錯誤號:6468354,具體錯誤緣由能夠查看:https://bugs.openjdk.java.net/browse/JDK-6468354
eclipse

  解決辦法:maven

  1. 在返回的地方增強制類型轉換,能夠臨時繞過該問題測試

public class JsonUtil {
	private static final Gson gson = new GsonBuilder().setDateFormat("yyyy-MM-dd HH:mm:ss").create();
	public static String toJson(Object obj) {
	  return gson.toJson(obj);
	}
      
	public static <T> T fromJson(String json, Class<T> classOfT) {
	  return (T)gson.fromJson(json, classOfT);
	}

	@SuppressWarnings("unchecked")
	public static <T> T fromJson(String json, Type typeOfT) {
	  return (T)gson.fromJson(json, typeOfT);
	}
}

  2. 升級jdk版本到1.6的最新版本,好比咱們升級到jdk1.6.0_38版本後,測試打包就沒有問題。根據網上資料,該bug在jdk1.6.0_25版本已經解決(沒有親測吆)ui

相關文章
相關標籤/搜索