简体   繁体   中英

NoClassDefFoundError: com/google/appengine/api/urlfetch/ResponseTooLargeException

I am using Google + API to search for people using the following statement.

  Plus plus = new Plus.Builder(httpTransport, jsonFactory, null).
            setApplicationName("AppName").setGoogleClientRequestInitializer(new 
            PlusRequestInitializer(API_KEY)).build();

  Plus.People.Search searchPeople = plus.people().search(personName).setMaxResults(1L);

  PeopleFeed peopleFeed = searchPeople.execute();

I put the dependencies for the library in pom.xml so that it can be build when maven executed

   <dependency>
       <groupId>com.google.apis</groupId>
       <artifactId>google-api-services-plus</artifactId>
       <version>v1-rev64-1.13.2-beta</version>
   </dependency>

But I get the following error:

Exception in thread "main" java.lang.NoClassDefFoundError: com/google/appengine/api/urlfetch/ResponseTooLargeException
    at com.google.api.client.extensions.appengine.http.urlfetch.UrlFetchTransport.buildGetRequest(UrlFetchTransport.java:61)
    at com.google.api.client.http.HttpRequest.execute(HttpRequest.java:867)
    at com.google.api.client.googleapis.services.AbstractGoogleClientRequest.executeUnparsed(AbstractGoogleClientRequest.java:399)
    at com.google.api.client.googleapis.services.AbstractGoogleClientRequest.executeUnparsed(AbstractGoogleClientRequest.java:328)
    at com.google.api.client.googleapis.services.AbstractGoogleClientRequest.execute(AbstractGoogleClientRequest.java:449)
    at com.google.PeopleSearch.googleAccountSearch(PeopleSearch.java:52)
    at com.google.Search.main(Search.java:128)
Caused by: java.lang.ClassNotFoundException: com.google.appengine.api.urlfetch.ResponseTooLargeException
    at java.net.URLClassLoader$1.run(Unknown Source)
    at java.net.URLClassLoader$1.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)

Any suggestions?

我遇到了类似的错误NoClassDefFoundError:com / google / appengine / api / urlfetch / HTTPMethod ,对我来说,它是通过从SDK/lib/user/appengine-api-1.0-sdk-1.9.27.jar复制App Engine SDK jar文件来SDK/lib/user/appengine-api-1.0-sdk-1.9.27.jar放入项目的WEB-INF/lib文件夹中(我未使用Maven)。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM