How to start/stop Tomcat server in Java

How to start/stop Tomcat server in Java

1. Project Structure

2.CallTomcat.java

package com.calltomcat.test;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class CallTomcat {
 public static void main(String[] args) {
 //String command = "E:\\apache-tomcat-7.0.76\\bin\\startup.bat";//Start tomcat command//String command = "E:\\apache-tomcat-7.0.76\\bin\\tomcat7w.exe";//Start Tomcat command, only for Windows version, no pop-up boxString command = "E:\\apache-tomcat-7.0.76\\bin\\shutdown.bat";//Shutdown tomcat command CallTomcat callTomcat = new CallTomcat();
 try {
  callTomcat.callCommand(command);
 } catch (IOException e) {
  System.out.println("Error executing command: " + e.getMessage());
 }
 }
 /**
 * Execute command * 
 * @throws IOException
 */
 private void callCommand(String command) throws IOException {
 Runtime runtime = Runtime.getRuntime(); //Returns the runtime object associated with the current Java application //Instructs the Java virtual machine to create a child process to execute the specified executable program, and returns the Process object instance corresponding to the child process Process process = runtime.exec(command);
 runtime.gc(); //Run the garbage collector String line = null;
 String content = "";
 BufferedReader br = new BufferedReader(new InputStreamReader(process.getInputStream()));
 while((line = br.readLine()) != null) {
  content += line + "\r\n";
 }
 System.out.println(content);
 }
}

3. Effect preview

3.1 Execute the start command

3.2 Execute shutdown command

4. Common Mistakes

After executing the code, the following may occur:

The CATALINA_HOME environment variable is not defined correctly
This environment variable is needed to run this program

At this time, you need to set the environment variables:

After I set it up, it still reported an error when running, but I logged out of the computer and ran it again.

5. Description

If you execute startup.bat, a pop-up box will automatically appear, but if you execute tomcat7w.exe (depending on the tomcat version), no pop-up box will appear. --Only Windows version, other versions have no .exe file.

Summarize

The above is the method of starting/closing the tomcat server in Java introduced by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!
If you find this article helpful, please feel free to reprint it and please indicate the source. Thank you!

You may also be interested in:
  • How to control Tomcat startup and shutdown in Asp.net
  • Solve the problem that shutting down Tomcat using shutdown.bat will shut down other Tomcats
  • Java code closes the tomcat program and analyzes the problems
  • A bug fix for Tomcat's automatic shutdown

<<:  Summary of MySQL stored procedure permission issues

>>:  Solution to the error message "java.sql.SQLException: Incorrect string value:'\xF0\x9F\x92\xA9\x0D\x0A...'" when storing emoticons in MySQL

Recommend

Why MySQL does not recommend using null columns with default values

The answer you often hear is that using a NULL va...

CentOS 7 method to modify the gateway and configure the IP example

When installing the centos7 version, choose to co...

Details of 7 kinds of component communication in Vue3

Table of contents 1. Vue3 component communication...

jQuery plugin to implement floating menu

Learn a jQuery plugin every day - floating menu, ...

A thorough analysis of HTML special characters

A Thorough Analysis of HTML (14) Special Characte...

Detailed explanation of this pointing in JS arrow function

Arrow function is a new feature in ES6. It does n...

CentOS 7 builds hadoop 2.10 high availability (HA)

This article introduces how to build a high-avail...

Docker Compose network settings explained

Basic Concepts By default, Compose creates a netw...

Implementation of tomcat image created with dockerfile based on alpine

1. Download the alpine image [root@docker43 ~]# d...

MySQL optimization: use join instead of subquery

Use JOIN instead of sub-queries MySQL supports SQ...

A detailed introduction to the CSS naming specification BEM from QQtabBar

BEM from QQtabBar First of all, what does BEM mea...

How to use TypeScript in Vue

introduction In recent years, the call for TypeSc...

MySQL 5.6 compressed package installation method

There are two installation methods for MySQL: msi...

Oracle VM VirtualBox installation of CentOS7 operating system tutorial diagram

Table of contents Installation Steps Environment ...

Automatically build and deploy using Docker+Jenkins

This article introduces Docker+Jenkins automatic ...