Detailed explanation of the principle of creating tomcat in Eclipse

Detailed explanation of the principle of creating tomcat in Eclipse

When creating a tomcat server on a local eclipse,

A copy of the configuration file in the conf file in the tomca installation directory will be copied to this tomcatserver directory

This tomcatserver directory is in the workspaces path, the same path as other projects

The files are as follows. These configuration files are the startup parameters for starting the tomcat call

Startup parameters when starting tomcat

-Dcatalina.base="D:\Source Code\SVN2013\.metadata\.plugins\org.eclipse.wst.server.core\tmp3" -Dcatalina.home="F:\Apache\apache-tomcat-8.5.34" -Dwtp.deploy="D:\Source Code\SVN2013\.metadata\.plugins\org.eclipse.wst.server.core\tmp3\wtpwebapps" -Djava.endorsed.dirs="F:\Apache\apache-tomcat-8.5.34\endorsed"

-Dcatalina.base

-D indicates a parameter, catalina.base indicates the parameter name, and the string after = indicates the value corresponding to the parameter.

Use the System.getProperty("catalina.base") method to get the corresponding value.

When starting here,

catalina.base, which indicates the working directory of Tomcat, or catalina.base refers to an instance of Tomcat.

catalina.home indicates the installation directory of Tomcat, that is, the directory containing the bin file.

wtp.deploy is the target path for project deployment, or the target path for the project to be copied after compilation. This directory is equivalent to the root directory of the address http://localhost:8080/ when accessing tomcat.

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • Eclipse configuration tomcat publishing path problem wtpwebapps solution
  • Java Web Development [Tomcat Environment Configuration] MyEclipse+IDEA Configuration Tutorial
  • Tomcat9 download, installation and configuration + detailed tutorial on integrating into eclipse
  • How to solve the problem that the project in eclipse cannot be added to tomcat
  • How to configure tomcat server for eclipse and IDEA
  • Modify the deployment path of Tomcat in Eclipse

<<:  Analysis of the difference between Mysql InnoDB and MyISAM

>>:  JavaScript to achieve the idea of ​​​​snake game

Recommend

How to implement load balancing in MySQL

Preface MySQL is a high-speed, high-performance, ...

How to install JDK 13 in Linux environment using compressed package

What is JDK? Well, if you don't know this que...

Drawing fireworks effect of 2021 based on JS with source code download

This work uses the knowledge of front-end develop...

Example of creating a virtual host based on Apache port

apache: create virtual host based on port Take cr...

Native JS to implement real-time clock

Share a real-time clock effect implemented with n...

Example code for implementing stacked carousel effect with HTML+CSS+JS

Effect: When the slideshow moves in one direction...

MySQL 8.0.12 decompression version installation tutorial

This article shares the installation tutorial of ...

Docker+nacos+seata1.3.0 installation and usage configuration tutorial

I spent a day on it before this. Although Seata i...

Detailed explanation of how two Node.js processes communicate

Table of contents Preface Communication between t...

MySQL operations: JSON data type operations

In the previous article, we introduced the detail...

Apply provide and inject to refresh Vue page method

Table of contents Method 1: Call the function dir...

Windows system mysql5.7.18 installation graphic tutorial

MySQL installation tutorial for Windows system do...