Product installation and configuration
DEXTUploadJK products are distributed as zip files on the Dext Solution site (http://www.dextsolution.com). The product is distributed under the name dextuploadjk-{version}.zip, and the files and directories (folders) are compressed.
- Composition in compressed file
-
Structure Description lib Contains jar files and license example files required to service using DEXTUploadJK products. lib-mvn Resources needed to use the Maven repository are included. manual There is an HTML-based product manual. (Format such as DOC(X), CHM, and PDF are not provided.) samples An example is included to examine the functions of the DEXTUploadJK product. util/dextuploadjk.util.hostnameip-<version>.jar This is a tool that allows you to check the host name and IP of a host. util/hostnameip-usage.md This is a text file that explains how to use the hostnameip tool. LicenseAgreement-<lang>.txt Product Terms - Installation
-
- DEXTUploadJK is a library-type product distributed as a jar file, so there is no installation process on the server.
- Copy the jar file included in the lib directory created when unzipping it to the 'WEB-INF/lib' subdirectory, or copy it to the location specified in the classpath.
-
When registering and using Maven, the pom.xml file is structured as follows.
<dependency> <groupId>dextsolution</groupId> <artifactId>dextuploadjk</artifactId> <version>1.0.0</version> </dependency> <dependency> <groupId>dextsolution</groupId> <artifactId>dextuploadjk-spring</artifactId> <version>1.0.0</version> </dependency> <dependency> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> <version>1.10</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-compress</artifactId> <version>1.12</version> </dependency> -
If you use Gradle, configure build.gradle as follows.
dependencies { // DEXTUploadJK dependency settings implementation 'dextsolution:dextuploadjk:1.0.0' implementation 'dextsolution:dextuploadjk-spring:1.0.0' // Required dependency libraries implementation 'commons-codec:commons-codec:1.10' // Dependencies required for compressed download implementation 'org.apache.commons:commons-compress:1.12' }