web.xml

This is the setting item pertaining to Nexacro-xeni/WEB-INF/web.xml.

Export File Path

Specify the pathway where the exported file will be saved under the current context (Nexacro-xeni). If the folder specified for export does not exist, then it is automatically created. Temporarily saved export files are automatically deleted after a certain period of time following creation. The default setting is '/export'.

<context-param>
	<param-name>export-path</param-name>
	<param-value>/export</param-value>
</context-param>

Import File Path

Specify the pathway of the file to be temporarily saved for import. If the folder specified for import does not exist, then it is automatically created. Temporarily used files are automatically deleted after import is completed. The default setting is '/import'.

<context-param>
	<param-name>import-path</param-name>
	<param-value>/import</param-value>
</context-param>

File Management Execution

Set whether to manage temporary files. If this value is set to 'false', then temporary files used for export/import are not deleted. The default setting is 'true'.

<context-param>
	<param-name>monitor-enabled</param-name>
	<param-value>true</param-value>
</context-param>

Management Execution Cycle

Set the monitor execution cycle for the management of the temporary file used and the chunked data for export. The units are 'minutes' and the default setting is '30' minutes.

<context-param>
	<param-name>monitor-cycle-time</param-name>
	<param-value>30</param-value>
</context-param>

When the file management is set, all files used for export are scanned, and files for which a certain period of time has elapsed are deleted. If chunked data transmitted from the Nexacro Platform remains in the memory for a certain period of time for export, then it is determined to be an error and it is deleted.

The management of chunked data takes place every cycle regardless of File Management Execution.

File Storage Time

Set the storage period of the temporary file used and the chunked data for export. The units are 'minutes' and the default setting is '10' minutes.

<context-param>
	<param-name>file-storage-time</param-name>
	<param-value>10</param-value>
</context-param>

Text Qualifier

Set whether to use the text qualifiers when processing text files. For the text qualifier, use the " (quotation mark).

<context-param>
	<param-name>csv-quote</param-name>
	<param-value>true</param-value>
</context-param>