maven-gae-plugin

how to create gwt gae with app engine modules using google eclipse plugin

寵の児 提交于 2019-12-03 07:42:53
How to create a new GWT and GAE project with modules using google eclipse plugin in Java? I tried using make a new web applications from the eclipse, but it just create me a GWT and GAE project without modules. Thanks. You'll probably want to first create a WTP project using GPE, because to use modules you'll need to create an EAR project. This is described here: https://developers.google.com/appengine/docs/java/webtoolsplatform You'll create modules, which will each be a dynamic web project. Your GWT app will be one of those. And follow the instructions for modules here: https://developers

GAE/J This application does not exist (app_id=u'application-id')

☆樱花仙子☆ 提交于 2019-12-02 04:36:40
I use maven-gae-plugin to deploy my app, it works find until i decide to deploy it to another app-id under different Google account. i met the "This applciation does not exist" problem. I found there are already some answers in StackOverflow, but was for python, i'm using GAE/J. I think i know the root cause, we should delete the "cache" in local, which stored my previous username/password, but what are these cache? and where are them? Or there are other ways to avoid this, i've tried so many ways but none works, so frustrating. Thanks in advance. I'm on Window7, GAE1.6.3 Edit: the python

Maven GAE archetype not working

自古美人都是妖i 提交于 2019-12-01 09:19:44
I'm trying to use google app engine for simple spring based application with maven. I have found that there is maven archetype avaible for that kind of web application (without spring, but this I can add on my own): Maven GAE. So I used the following command: mvn archetype:generate -DarchetypeGroupId=net.kindleit -DarchetypeArtifactId=gae-archetype-jsp -DgroupId=com.example -DartifactId=form -DarchetypeRepository=http://maven-gae-plugin.googlecode.com/svn/repository However, when i tried to use "mvn gae:run" it doesn't work and I don't know how to solve this missing requirement: [INFO] BUILD

Maven GAE archetype not working

牧云@^-^@ 提交于 2019-12-01 06:16:29
问题 I'm trying to use google app engine for simple spring based application with maven. I have found that there is maven archetype avaible for that kind of web application (without spring, but this I can add on my own): Maven GAE. So I used the following command: mvn archetype:generate -DarchetypeGroupId=net.kindleit -DarchetypeArtifactId=gae-archetype-jsp -DgroupId=com.example -DartifactId=form -DarchetypeRepository=http://maven-gae-plugin.googlecode.com/svn/repository However, when i tried to

GAE java.lang.IllegalStateException: Must call one of set*BlobStorage() first

风流意气都作罢 提交于 2019-12-01 05:41:58
问题 I am trying to upload a file in GAE using the Blobstore API. I am getting the following exception when running the GAE server locally (dev mode): WARNING: /_ah/upload/ag10cmlwc2NoZWR1bGVychsLEhVfX0Jsb2JVcGxvYWRTZXNzaW9uX18YFQw java.lang.IllegalStateException: Must call one of set*BlobStorage() first. at com.google.appengine.api.blobstore.dev.BlobStorageFactory.getBlobStorage(BlobStorageFactory.java:24) at com.google.appengine.api.blobstore.dev.UploadBlobServlet.init(UploadBlobServlet.java:88)

https only in google app engine

江枫思渺然 提交于 2019-11-28 07:14:24
I am on a google app engine project now. In my application I have to allow only https protocol. And I have to restrict other protocols. It should allow https only. I have added the below code in web.xml. <security-constraint> <web-resource-collection> <web-resource-name>Protected Area</web-resource-name> <url-pattern>/*</url-pattern> </web-resource-collection> <user-data-constraint> <transport-guarantee>CONFIDENTIAL</transport-guarantee> </user-data-constraint> </security-constraint> But after deploying it works on both the protocols(http and https). How to restrict http? It is possible to