Solve the problem of spring boot + jar packaging deployment tomcat 404 error

Solve the problem of spring boot + jar packaging deployment tomcat 404 error

1. Spring boot does not support jsp jar package, jsp can only be war package.
method:

<packaging>war</packaging>

<build>
 	<plugins>
 		<plugin>
 			<groupId>org.springframework.boot</groupId>
 			<artifactId>spring-boot-maven-plugin</artifactId>
 		</plugin>
 	</plugins>
</build>

2. The tomcat version cannot be too new, as it may be unstable. If you use tomcat10, the result will be 404. If you use tomcat9, it will be normal.

The word spring never appears when deployed to tomcat10

The word spring never appears when deployed to tomcat10

Change to tomcat9 and you can see the changes immediately

insert image description here

Successful deployment

insert image description here

This is the end of this article about solving the 404 error problem of spring boot + jar packaging deployment tomcat. For more relevant spring boot + jar packaging deployment tomcat content, 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:
  • A brief discussion on the implementation principle of SpringBoot embedded Tomcat
  • Solve the problem that SpringBoot webSocket resources cannot be loaded and tomcat startup errors
  • How to install tomcat in docker and deploy the Springboot project war package
  • Solve the problem that Spring boot embedded tomcat does not start
  • A brief discussion on the difference between springboot built-in tomcat and external independent deployment of tomcat
  • SpringBoot2 uses Jetty container operation (replacing the default Tomcat)
  • SpringBoot removes the implementation of embedded tomcat
  • Detailed explanation of the two packaging methods of springboot projects with Tomcat and without Tomcat
  • Tomcat reports an error when starting the springboot project war package: Error when starting the child
  • How to switch the default Tomcat container in Springboot
  • How to remove the embedded Tomcat in Spring Boot and start it in a non-web way

<<:  View the command to modify the MySQL table structure

>>:  Vue/react single page application back without refresh solution

Recommend

JDBC-idea import mysql to connect java jar package (mac)

Preface 1. This article uses MySQL 8.0 version Co...

Issues with locking in MySQL

Lock classification: From the granularity of data...

Detailed introduction to deploying k8s cluster on centos7 system

Table of contents 1 Version and planning 1.1 Vers...

Combining XML and CSS styles

student.xml <?xml version="1.0" enco...

Detailed explanation of MySQL InnoDB secondary index sorting example

Sorting Problem I recently read "45 Lectures...

Web design must also first have a comprehensive image positioning of the website

⑴ Content determines form. First enrich the conten...

In-depth explanation of MySQL user account management and permission management

Preface The MySQL permission table is loaded into...

Example code for implementing background transparency and opaque text with CSS3

Recently, I encountered a requirement to display ...

HTML solves the problem of invalid table width setting

If you set the table-layer:fixed style for a tabl...

Basic knowledge: What does http mean before a website address?

What is HTTP? When we want to browse a website, w...

How to use cookies to remember passwords for 7 days on the vue login page

Problem Description In the login page of the proj...

Various problems encountered by novices when installing mysql into docker

Preface Recently, my computer often takes a long ...

Detailed installation and use of virtuoso database under Linux system

I've been researching some things about linke...