Sidebar

Can I change the java temp directory?

0 votes
7.2K views
asked Apr 20, 2016 by ben-s-7515 (12,640 points)
QIE extracts the war file to the windows temp directory.  Is there any way to spcify the directory for this instead of using the default windows temp directory?

1 Answer

+1 vote

By default java uses the temp directory for the OS.  This can be changed by adding the following java option to the QIE startup parameters:

-Djava.io.tmpdir=/path/to/tmpdir

This will force the JVM to extract the war to the specified directory.

answered Apr 20, 2016 by ben-s-7515 (12,640 points)
...