File Uploader
CKEditor add-on
TinyMCE add-on
NEW
N1ED logo
N1ED is united plugin
for all JS+ plugins
N1ED logo Buy in bundle

Java

Location in archive: serverside/java/

File Uploader adheres to standard technologies in Java stack and is shipped as a servlet. Correspondingly, your steps to install File Uploader to the server come to deploying the war-files on your application server, for example, Tomcat.

After deploying the server, assign the URL it will be available at, and configure its parameters.
The list of servlet settings is the same as in the PHP-version.
The servlet configuration is also pretty much standard for J2EE. Here is an example of such configuration:

<servlet>
    <description></description>
    <display-name>UploaderServlet</display-name>
    <servlet-name>UploaderServlet</servlet-name>
    <servlet-class>plus.js.uploader.servlet.UploaderServlet</servlet-class>

    <init-param>
         <param-name>crossDomainUrl</param-name>
         <param-value>*</param-value>
     </init-param>

     <init-param>
         <param-name>dirFiles</param-name>
         <param-value>/home/storage/files</param-value>
     </init-param>
</servlet>

<servlet-mapping>
    <servlet-name>UploaderServlet</servlet-name>
    <url-pattern>/uploader</url-pattern>
</servlet-mapping>