questionWhen we are developing normally, if we want to deploy the project to Tomcat, the general practice is to package the project into a war package, then throw the war package into the webapps directory of Tomcat, and then start the project. However, when deploying a project to a production environment, the configuration files of the production environment are generally different from those of the local development environment. In this case, it is more troublesome to deploy the project to production using the method just described. You need to manually delete the original configuration files, or exclude the configuration files when packaging, and then copy the correct configuration files to the resource directory of the project. So, is there a simpler way? Workaround We can put the configuration files in a fixed location on the server, such as /var/config. Then import these configuration files into Tomcat.
Special note: appContext here is the context of your project, you need to change it to your own project context name, for example: taobao.xml Fill in appContext.xml like this <Context path ="/appContext" docBase ="/home/tools/apps/appContext.war" debug ="0" privileged ="true" reloadable ="true" > <Parameter name="" value="/home/tools/config" override="false"/> </Context> path: fill in the context of your project docBase: fill in the war package path value: fill in the project configuration file path Go back to the Tomcat directory, then enter the bin directory and modify the setenv.sh file CLASSPATH=$CLASSPATH:/home/tools/config If this file does not exist, create it and set executable permissions.
Finally, let me share a little knowledge, Tomcat sets the memory size In the bin directory of Tomcat, open the catalina.sh file and add the following line to the first line of the official code: JAVA_OPTS="-server -Xms128m -Xmx256m -XX:PermSize=64M -XX:MaxPermSize=128m" Summarize This is the end of this article about placing Tomcat configuration files externally. For more information about placing Tomcat configuration files externally, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: How to create your first React page
>>: Web Standard Application: Redesign of Tencent QQ Home Page
In web development, you often encounter characters...
Postfix is a free and open source MTA (Mail Tra...
MySQL Introduction to MySQL MySQL was originally ...
This article will introduce how to use explain to...
Create a new table CREATE TABLE `person` ( `id` i...
Docker basic instructions: Update Packages yum -y...
When we develop a single-page application, someti...
XHTML defines three document type declarations. T...
In centos7, the permissions of the /etc/rc.d/rc.l...
1. Grid layout (grid): It divides the web page in...
If you want to solve the slow problem once and fo...
1. Cause: The effect after the subbox is set to f...
This article example shares the specific code of ...
Color is one of the most important elements for a...
Table of contents 1. The elephant that can’t fit ...