java - You will not be able to access files from your working directory on the production server -


when running gae app with:

$ mvn appengine:devserver 

somewhere down line shows error:

you not able access files working directory on production server. 

what mean, , how rid of it.

it's hard give definitive answer because don't provide context, , because it's been while haven't used gae, here's guess.

it means on real appengine, on google's machines, won't able access files in working directory (and won't able write file @ all), because forbidden in environment.

and guess shows error because on development server, you're executing code accessing current directory. warns code, although working fine on development server, won't work on real app engine.

to rid of warning, find code doing that, , modify it.

read https://developers.google.com/appengine/docs/java/runtime#the_sandbox more details.


Comments

Popular posts from this blog

linux - xterm copying to CLIPBOARD using copy-selection causes automatic updating of CLIPBOARD upon mouse selection -

c++ - qgraphicsview horizontal scrolling always has a vertical delta -