This example will help you integrate ONLYOFFICE Docs into your web application written in Java with Spring Boot.
Spring Boot has a lot of functionality, but its most significant features are: dependency management, auto-configuration, and built-in servlet containers.
Please keep in mind the following security aspects when you are using test examples:
Download and install ONLYOFFICE Docs (packaged as Document Server):
See the detailed guide to learn how to install ONLYOFFICE Docs for Windows.
Download the Java-Spring example from our site.
To connect the editors to your website, specify the path to the editors installation, server port and the path to the storage folder in the src/main/resources/application.properties file:
files.storage= server.port=port files.docservice.url.site=https://documentserver/
where the documentserver is the name of the server with the ONLYOFFICE Docs installed, port is any available port and files.storage is the path where files will be created and stored (in the project folder by default). You can set an absolute path. For example, D:\\folder. Please note that on Windows OS the double backslash must be used as a separator.
If you want to experiment with the editor configuration, modify the parameters in the \src\main\webapp\editor.jsp file.
To run the Java-Spring example code, install the Java version 11 appropriate for your OS and framework Apache Maven:
After you have installed Java on Windows, set the JAVA_HOME environment variable to point to the Java installation directory.
Find out where Java is installed. If you didn't change the path during installation, it will be something like this:
C:\Program Files\Java\jdk11
In Windows 7, right click My Computer and select Properties, then click Advanced.
In Windows 8, go to Control Panel and select System, then click Advanced System Settings.
Click the Environment Variables button.
Under System Variables, click New.
In the Variable Name field, enter JAVA_HOME if you installed the JDK (Java Development Kit) or JRE_HOME if you installed the JRE (Java Runtime Environment).
In the Variable Value field, enter your JDK or JRE installation path, for example C:\Program Files\Java\jdk11.
Check if the variable created successfully by echo command in the Command Prompt:
echo %JAVA_HOME%
Set the MAVEN_HOME environment variable:
Unzip the downloaded archive with Maven to any directory. It will be something like this:
C:\apache-maven-3.8.1
In Windows 7, right click My Computer and select Properties, then click Advanced.
In Windows 8, go to Control Panel and select System, then click Advanced System Settings.
Click the Environment Variables button.
Under System Variables, click New.
In the Variable Name field, enter MAVEN_HOME.
In the Variable Value field, enter your JDK or JRE installation path, for example C:\apache-maven-3.8.1.
In the system variables, find PATH, click the Edit... button. In the Edit environment variable dialog, click the New button and add C:\apache-maven-3.8.1\bin to the PATH system variable.
Check if the variable created successfully by echo command in the Command Prompt:
echo %MAVEN_HOME%
Open a console and go to the java-spring folder using the cd command:
cd C:\Program Files\document-server-integration\web\documentserver-example\java-spring
In the open console, enter the following commands:
mvn clean mvn package mvn spring-boot:run
Open your browser using server.address and server.port:
http://server.address:server.port/
In case the example and ONLYOFFICE Docs are installed on different computers, make sure that your server with the example installed has access to the ONLYOFFICE Docs with the address which you specify instead of documentserver in the configuration files. Make sure that the ONLYOFFICE Docs in its turn has access to the server with the example installed with the address which you specify instead of example.com in the configuration files.
If you integrated the editors successfully the result should look like the demo preview on our site.
Download and install ONLYOFFICE Docs (packaged as Document Server):
See the detailed guide to learn how to install ONLYOFFICE Docs for Linux.
There are two ways to get the Java-Spring example:
download the archive with the Java-Spring example and unpack it:
wget https://github.com/ONLYOFFICE/document-server-integration/releases/latest/download/Java.Spring.Example.zip unzip Java.Spring.Example.zipclone the git repository:
git clone https://github.com/ONLYOFFICE/document-server-integration.gitChange the current directory for the project directory:
in the archive:
in the git repository:
Edit the following lines:
files.storage= server.port=port files.docservice.url.site=https://documentserver/
where the documentserver is the name of the server with the ONLYOFFICE Docs installed, port is any available port and files.storage is the path where files will be created and stored (in the project folder by default). You can set an absolute path.
Start Java-Spring example:
Open your browser using server.address and server.port:
In case the example and ONLYOFFICE Docs are installed on different computers, make sure that your server with the example installed has access to the ONLYOFFICE Docs with the address which you specify instead of documentserver in the configuration files. Make sure that the ONLYOFFICE Docs in its turn has access to the server with the example installed with the address which you specify instead of example.com in the configuration files.
If you integrated the editors successfully the result should look like the demo preview on our site.
Download and install ONLYOFFICE Docs (packaged as Document Server):
See the detailed guide to learn how to install ONLYOFFICE Docs for Docker.
There are two ways to get the Java-Spring example:
download the archive with the Java-Spring example and unpack it:
wget https://github.com/ONLYOFFICE/document-server-integration/releases/latest/download/Java.Spring.Example.zip unzip Java.Spring.Example.zipclone the git repository:
git clone https://github.com/ONLYOFFICE/document-server-integration.gitChange the current directory for the project directory:
in the archive:
in the git repository:
Edit the following lines:
files.storage= server.port=port files.docservice.url.site=https://documentserver/
where the documentserver is the name of the server with the ONLYOFFICE Docs installed, port is any available port and files.storage is the path where files will be created and stored (in the project folder by default). You can set an absolute path.
Open your browser using server.address and server.port:
In case the example and ONLYOFFICE Docs are installed on different computers, make sure that your server with the example installed has access to the ONLYOFFICE Docs with the address which you specify instead of documentserver in the configuration files. Make sure that the ONLYOFFICE Docs in its turn has access to the server with the example installed with the address which you specify instead of example.com in the configuration files.
If you integrated the editors successfully the result should look like the demo preview on our site.