Hi all,
thanks a lot for all solutions proposed.
I think I am going create the directory within my webapp, but without symbolic link, as my images are temporary files.
So even if the directory is deleted it really does not matter
Thanks again
Romain
Li wrote:
you are right Moises, if you really wanna write to somewhere within
the webapp deploy folder, a better is to make a soft symbol link point
to the directory that stores the image,

<catalina_home>/webapps
  --- <your_web>
            ---- <image_dir>  -------------------> /tmp/images/

so next time update the war, even the folder is removed, the images
still at /tmp
we can just make a new <image_dir> and make a new link that points to
/tmp/images
whenever image needs to be written to ...

On 8/7/06, Moises Lejter <[EMAIL PROTECTED]> wrote:
I had a similar question, earlier... There is another issue here: you are right that WAR files are expanded back into a folder - at least by default - so one could still create a folder within the web app to write to, and which is visible to browsers... Until one deploys an updated WAR file. At that point, tomcat will delete the old expanded WAR folder, in order to create a new one to deploy the new WAR file into - and in the process it will remove
all files that were created before.  If these files are just transient
anyway, then it does not matter...

Moises

"Li" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
>
> 1. even you deploy as war, later after start tomcat, it will still
> generate a folder that actually tomcat uses normally. so in this case,
> you still be able to use context path to write
> 3. to write, you can always use context path or absolute path
> defintion no matter is inside or outside, but after been written and
> you wanna view, you have to define as URL,




---------------------------------------------------------------------
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]







---------------------------------------------------------------------
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to