文章出處
文章列表
出錯場景:
代碼:
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下編譯是沒有任何問題。
maven編譯配置:
<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>
異常信息:
[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
解決辦法:
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版本已經解決(沒有親測吆)
文章列表
全站熱搜