google-plugin-eclipse

Issue with installation of GWT 2.6

主宰稳场 提交于 2019-12-02 02:59:46
I have just installed GWT 2.6 and am now getting the error "Description Resource Path Location Type The file war\WEB-INF\lib\gwt-servlet.jar has a different size than GWT SDK library gwt-servlet.jar; perhaps it is a different version? gwt-servlet.jar /AwardTracker/war/WEB-INF/lib Unknown Google Web Toolkit Problem" I downloaded the GWT 2.6 zip and then copied the directory "GWT-2.6.0" into "Eclipse\eclipse-jee-juno-SR1-win32\eclipse\plugins". I then right clicked on the project and selected "properties/Google/Web Toolkit/Configure SDKs.../Add". I then browsed to the "GWT-2.6.0" directory,

GWT: Using External Jar

…衆ロ難τιáo~ 提交于 2019-12-01 09:26:04
问题 I am trying to figure out how to use external jar in GWT project. I referred http://www.vogella.com/articles/GWTModules/article.html and it worked perfectly. But the example explained using another project being included in the GWT project's build path instead of including the jar of that project. I know this should not make a difference but when I created the jar of the external project (including sources) and used it in the client GWT gave me following error: The import com.person cannot be

Generate cloud endpoint client library suddenly stopped working

♀尐吖头ヾ 提交于 2019-11-30 22:12:57
Normally when I right-click my app engine project and choose "Generate cloud endpoint client library" using the Google plugin for Eclipse, it generates the client libraries and automatically copies them into the Android client project. However, for no apparent reason, the client library is no longer being copied to the client project. In fact, it has been removed (so now I have a lot of errors in my project because it can't find the libraries). I've tried re-generating the client library which completes without any errors but the problem persists. Interestingly, it seems to complete the

How to disable SystemServiceServlet configuration in App Engine project?

眉间皱痕 提交于 2019-11-30 09:59:24
The Google Plugin for Eclipse auto-generates these lines in web.xml no matter what the project properties are set to: <servlet> <servlet-name>SystemServiceServlet</servlet-name> <servlet-class>com.google.api.server.spi.SystemServiceServlet</servlet-class> <init-param> <param-name>services</param-name> <param-value/> </init-param> </servlet> <servlet-mapping> <servlet-name>SystemServiceServlet</servlet-name> <url-pattern>/_ah/spi/*</url-pattern> </servlet-mapping> Is there a way to prevent the plugin to do that? In your project Properties, under Builders, if you disable Google App Engine

Google Plugin for Eclipse Luna?

╄→гoц情女王★ 提交于 2019-11-30 00:46:03
问题 I have installed Eclipse Luna 4.4-M6. I tried installing the Google Plugin for Eclipse 4.3 (Kepler), but Eclipse would not allow me to install it. Is there some way to force it to install (e.g. by downloading it and editing some manifest or other)? Or would this be futile due to breaking changes between 4.3 and 4.4? 回答1: According to the Google Plugin for Eclipse community forum, we might be able to expect a new plugin with Luna support by mid-July. https://groups.google.com/forum/#!topic

How to generate client library

六眼飞鱼酱① 提交于 2019-11-29 11:49:52
I am trying to generate java client library for my existing web application, but each time a select "generate cloud endpoint client library" the eclipse shows progress dialog and freezes. Is there a command line tool (something like bin/endpoints.sh) that can be used to generate client library? thanks in advance. EDIT Thanks Dan, I managed to generate client library by using this command: $SDK/endpoints.sh get-client-lib com.test.MyEndpoint You should be able to find out at least a little bit more information about the error in generating the library by looking at the Eclipse error log.

Google adt/gwt support for eclipse 4.4 (Luna)

不羁岁月 提交于 2019-11-29 04:34:49
Have anyone gotten the release version of eclipse 4.4 to work with adt(Android development) and/or google web toolkit(gwt). It seems like the gwt/adt plugins don't works with eclipse 4.4, so is there a secret place to download new versions or should I keep using 4.3 -( Edit: The reason I thought adt was not working was that the documentation( http://developer.android.com/sdk/installing/installing-adt.html ) says that the plugin is called "ADT Plugin" which it is not. Google just released its official SDK for Eclipse Luna: https://developers.google.com/eclipse/docs/getting_started For adt ,

How to generate client library

限于喜欢 提交于 2019-11-28 05:25:47
问题 I am trying to generate java client library for my existing web application, but each time a select "generate cloud endpoint client library" the eclipse shows progress dialog and freezes. Is there a command line tool (something like bin/endpoints.sh) that can be used to generate client library? thanks in advance. EDIT Thanks Dan, I managed to generate client library by using this command: $SDK/endpoints.sh get-client-lib com.test.MyEndpoint 回答1: You should be able to find out at least a