Idea configures tomcat to start a web project graphic tutorial

Idea configures tomcat to start a web project graphic tutorial

Configure tomcat

1. Click run configuration

insert image description here

2. Select tomcat local

insert image description here

3. Configure tomcat

insert image description here

4. Deploy web project

There are 2 ways to deploy
war package: package it into war and run it on the server. This method is more common.
war exploded: upload the web project to the server in the location relationship of the current folder. Just move the folders, jsp pages, classes, etc. directly to the Tomcat deployment folder for loading and deployment. Therefore, this method supports hot deployment and is generally used during development.

The way to get the absolute context path is different:
String contextPath = request.getSession().getServletContext().getRealPath("/");

We are using war exploded for demonstration.

insert image description here

We have already generated it here. If it is not generated, you can generate it manually.

insert image description here

Select Deployment

insert image description here
insert image description here

The suffix of application context and url should be the same, otherwise 404 will appear.
Start tomcat

Summarize

This is the end of this article about idea configuration tomcat to start web project. For more related idea configuration tomcat to start web project content, please search 123WORDPRESS.COM's previous articles 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 use IDEA to create a web project and publish it to tomcat
  • How to remove the embedded Tomcat in Spring Boot and start it in a non-web way
  • Detailed explanation of the process of deploying Tomcat and creating the first web project in IDEA 2020.3.1
  • Tomcat first deployment web project process diagram
  • Solve the problem that the files under WEB-INF/classes are not compiled after tomcat releases the project
  • Solve the problem that SpringBoot webSocket resources cannot be loaded and tomcat startup errors
  • IDEA graphic tutorial on configuring Tomcat server and publishing web projects
  • Alibaba Cloud Server Linux System Builds Tomcat to Deploy Web Project
  • Briefly describe how to install Tomcat image and deploy web project in Docker
  • Analysis of the process of deploying pure HTML files in Tomcat and WebLogic
  • IDEA2020.1.2 Detailed tutorial on creating a web project and configuring Tomcat
  • How to configure Tomcat and run your first Java Web project on IntelliJ IDEA 2018
  • Java web project starts Tomcat error solution
  • Tomcat source code analysis of Web requests and processing

<<:  Determine whether MySQL update will lock the table through examples

>>:  Steps for Django to connect to local MySQL database (pycharm)

Recommend

How to quickly log in to MySQL database without password under Shell

background When we want to log in to the MySQL da...

MySQL aggregate function sorting

Table of contents MySQL result sorting - Aggregat...

Example code for implementing div concave corner style with css

In normal development, we usually use convex roun...

Solve the problem of Docker starting Elasticsearch7.x and reporting an error

Using the Docker run command docker run -d -p 920...

Implementation of mysql data type conversion

1. Problem There is a table as shown below, we ne...

How to use localStorage in JavaScript

If you are a developer looking to get into the wo...

Vue implements websocket customer service chat function

This article mainly introduces how to implement a...

Steps for Vue3 to use mitt for component communication

Table of contents 1. Installation 2. Import into ...

HTML tag meta summary, HTML5 head meta attribute summary

Preface meta is an auxiliary tag in the head area...

Linux common text processing commands and vim text editor

Today, let's introduce several common text pr...

Docker completely deletes private library images

First, let’s take a look at the general practices...

vue dynamic component

Table of contents 1. Component 2. keep-alive 2.1 ...

Installation steps of mysql under linux

1. Download the mysql tar file: https://dev.mysql...