我收到以下錯誤 - 我在我的依賴項中添加了GSon-GSON未被導入到maven項目中
有人可以指出我做錯了什麼嗎?
編輯:指定的依賴 -
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>1.7.1</version>
</dependency>
我使用下面的代碼在我sevlet -
JSONService json = new JSONService();
String json_output = json.makeLoginJSON(user);
makeLoginJSON ---
public String makeLoginJSON(LoginDetails user) {
String FinalJson = null;
Gson gson = new Gson();
FinalJson = gson.toJson(user);
return FinalJson;
}
你的maven依賴聲明是什麼? – 2012-07-09 20:32:10
你用什麼來建立你的項目?並且請發佈你的依賴配置 – Dave 2012-07-09 20:33:50
它是可訪問的,請嘗試更新Maven依賴關係,如果它不起作用,請嘗試從本地Maven存儲庫中刪除包並強制它再次下載。試用一個新版本也可以。 – 2012-07-09 20:37:56