Home  >  Article  >  Java  >  How to deploy java project server? Deployment steps for project server

How to deploy java project server? Deployment steps for project server

青灯夜游
青灯夜游forward
2018-10-23 17:07:294703browse

The content of this article is to introduce how to deploy the JAVA project server? Deployment steps for the project server. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.

1. Download Java JDK

Search for jdk download, then enter the JAVA official website jdk download page, select your corresponding operating system, and click to download: https:/ /www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html

Download the corresponding version:

2. Install JDK

This step is all selected by default and just click Next (note the path to C drive).

3. Configure java environment variables after the installation is complete

(1) Computer → Properties → Advanced System Settings → Advanced → Environment Variables

(2) System variables → Create a new JAVA_HOME variable

(3) System variables → Find Path variable → Edit → Edit text

Enter %JAVA_HOME%\bin;%JAVA_HOME%\jre\bin;

## at the end of the variable value (4) System variables → Create a new CLASSPATH variable

Fill in the variable value: .;%JAVA_HOME%\lib;%JAVA_HOME%\lib\tools.jar (note the dot at the front)

System variables are configured.

3. Download the installation-free version of tomcat, and configure tomcat environment variables

(1) Download tomcat (https://link.juejin.im/?target=https://tomcat.apache. org/download-80.cgi), select 8.0.53 and click zip. Unzip the downloaded zip directly to any disk and remember the path

(2) Create a new system variable name CATALINA_HOME , the value is the installation path of tomcat

(3) Find the Path variable and add �TALINA_HOME%\lib;�TALINA_HOME%\bin

## in the value

#! ! At this point, all configurations are successful.

4. Deployment project

(1)

(2 )

Find the webapps folder and copy the project's war package here. Find startup.bat under the bin folder and start the service and it will be automatically translated.

The above is the detailed content of How to deploy java project server? Deployment steps for project server. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:cnblogs.com. If there is any infringement, please contact admin@php.cn delete