I am currently working with GAE and was trying to figure out if there was some way that I can run php on GAE. Fortunately, I came across Quercus and was very happy to find that it had all that i needed.

But the problem now is that once I include the resin.jar to the WEB-INF/lib folder and try to update app using the google plugin in eclipse, it gives me an error saying that the size of the jar file is big and recommends me adding --enable_jar_splitting flag.

Now I have gone through a lot of sites where people have had similar problems. So what do I do to overcome this?

So here's what I am looking for in short: 1. Either a way to include this flag in the eclipse plugin 2. Finding out a way to split the jar file.

SOLUTION:

The only way that the above is currently possible is by using the command line utility present in the sdk/bin folder called - appcfg.sh

appcfg.sh --enable_jar_splitting -e user@domain.com update /path/to/war/file

PS: It is assumed that you have added the path to the bin folder as a environmental variable.

有帮助吗?

解决方案

As Hakre has mentioned, the answer to my problem is available here and here.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top