I'm trying to use Google endpoints' @Api and @ApiMethod to generate my endpoint api which works great, as long as my return type is inside the source of my project. As soon as I start using a class which is included via a jar in the classpath (I'm using maven so it's a dependency), I get the following exception:
[INFO] --- endpoint-maven-plugin:0.0.2-SNAPSHOT:generate (default) @ gatecontrolweb ---
[INFO] Generating api-file for appId gatecontrolweb with classes be.klak.gatecontrolweb.DevicesController
interface com.google.api.server.spi.config.Api
[ERROR]
java.lang.TypeNotPresentException: Type be.klak.gatecontrol.domain.House not present
at sun.reflect.generics.factory.CoreReflectionFactory.makeNamedType(CoreReflectionFactory.java:117)
at sun.reflect.generics.visitor.Reifier.visitClassTypeSignature(Reifier.java:125)
at sun.reflect.generics.tree.ClassTypeSignature.accept(ClassTypeSignature.java:49)
at sun.reflect.generics.visitor.Reifier.reifyTypeArguments(Reifier.java:68)
at sun.reflect.generics.visitor.Reifier.visitClassTypeSignature(Reifier.java:138)
at sun.reflect.generics.tree.ClassTypeSignature.accept(ClassTypeSignature.java:49)
at sun.reflect.generics.repository.MethodRepository.getReturnType(MethodRepository.java:68)
at java.lang.reflect.Method.getGenericReturnType(Method.java:244)
at com.google.api.server.spi.EndpointMethod.getReturnType(EndpointMethod.java:137)
at com.google.api.server.spi.EndpointMethod.create(EndpointMethod.java:160)
at com.google.api.server.spi.MethodHierarchyReader.addServiceMethods(MethodHierarchyReader.java:182)
at com.google.api.server.spi.MethodHierarchyReader.readMethodHierarchyIfNecessary(MethodHierarchyReader.java:44)
at com.google.api.server.spi.MethodHierarchyReader.getEndpointOverrides(MethodHierarchyReader.java:99)
at com.google.api.server.spi.config.annotationreader.ApiConfigAnnotationReader.readApiMethods(ApiConfigAnnotationReader.java:184)
at com.google.api.server.spi.config.annotationreader.ApiConfigAnnotationReader.readEndpoint(ApiConfigAnnotationReader.java:82)
at com.google.api.server.spi.tools.AnnotationApiConfigGenerator.generateForService(AnnotationApiConfigGenerator.java:242)
at com.google.api.server.spi.tools.AnnotationApiConfigGenerator.generateConfigObjects(AnnotationApiConfigGenerator.java:227)
at com.google.api.server.spi.tools.AnnotationApiConfigGenerator.generateConfig(AnnotationApiConfigGenerator.java:176)
at com.mic.endpoint.api.EndpointApiGenerator.generateApiConfigs(EndpointApiGenerator.java:26)
at com.mic.endpoint.api.EndpointApiMojo.execute(EndpointApiMojo.java:58)
at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:101)
As you can see I'm also using the google endpoint maven plugin. I get the same problem when using the Google App Engine plugin for eclipse. Is something like this possible?
My "House" class lives in a jar. Thanks a lot!
Edit: I've tried something else - extending House as "MyHouse", a local java file. Now I get another error from the maven plugin:
[ERROR] Failed to execute goal com.mic.endpoint.api:endpoint-maven-plugin:0.0.2-SNAPSHOT:generate (default) on project gatecontrolweb: Execution default of goal com.mic.endpoint.api:endpoint-maven-plugin:0.0.2-SNAPSHOT:generate failed: A required class was missing while executing com.mic.endpoint.api:endpoint-maven-plugin:0.0.2-SNAPSHOT:generate: be/klak/gatecontrol/domain/House
Should I be able to tell the plugin what to include within the class path?
Edit:
I'll answer my own question: I had to add the jar as a separate <dependency/> inside the plugin (in the pom) - like this:
<plugin>
<groupId>com.mic.endpoint.api</groupId>
<artifactId>endpoint-maven-plugin</artifactId>
<version>0.0.2-SNAPSHOT</version>
<executions>
<execution>
<phase>compile</phase>
<goals>
<goal>generate</goal>
</goals>
</execution>
</executions>
<configuration>
<applicationId>${appengine.app.id}</applicationId>
<serviceClassNames>${endpoint.service.classnames}</serviceClassNames>
</configuration>
<dependencies>
<dependency>
<groupId>be.klak</groupId>
<artifactId>gatecontrol</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
</dependencies>
</plugin>
Not that great (DRY) as it's listed as a project dependency, but whatever, it works :)