Explanation on the use and modification of Tomcat's default program publishing path

Explanation on the use and modification of Tomcat's default program publishing path

The default program publishing path of tomcat7 is tomcat/webapps/ROOT/.

example

For example, if I create a jsp file in the tomcat/webapps/ROOT/ path, I can directly use the URL:

http://localhost:8080/index.jsp

Come visit.

For example, when I do file upload and download functions, I can create a new FileUpload folder under ROOT, set the path of the uploaded file to this folder, and then upload a file test.txt; when doing the download function, click the download button of the file to directly open a URL on the web page:

http://localhost:8080/FileUpload/test.txt

Revise

Open tomcat/conf/server.xml, there is the following code:

   <Host name="localhost" appBase="webapps"
      unpackWARs="true" autoDeploy="true">
    <!-- SingleSignOn valve, share authentication between web applications
       Documentation at: /docs/config/valve.html -->
    <!--
    <Valve className="org.apache.catalina.authenticator.SingleSignOn" />
    -->
    <!-- Access log processes all example.
       Documentation at: /docs/config/valve.html
       Note: The pattern used is equivalent to using pattern="common" -->
    <Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs"
        prefix="localhost_access_log." suffix=".txt"
        pattern="%h %l %u %t &quot;%r&quot; %s %b" />
   </Host>

name is the local access address and appBase is the parent address of the project, both of which can be modified. Add the following tags between the host tags

<Context path="" docBase="example" debug="0" reloadable="true" />

Among them, path is the name of the virtual directory. As long as you enter the IP address, the homepage will be displayed. docBase is the path of the virtual directory. The default is tomcat/webapps/ROOT/. We change it to docBase="example". At this time, example has the same function as ROOT!

mission success

Summarize

The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM. If you want to learn more about this, please check out the following links

You may also be interested in:
  • Analysis and solution of abnormal problem of loading jar in tomcat
  • Detailed understanding and comparative analysis of servers Apache, Tomcat and Nginx
  • Explanation of several ways to run Tomcat under Linux
  • How to set up virtual directories and configure virtual paths in Tomcat 7.0
  • Explanation of Tomcat using IDEA remote Debug
  • Tomcat uses Log4j to output catalina.out log
  • Connector configuration in Tomcat
  • Detailed steps for importing eclipse projects into IDEA and deploying them to tomcat
  • Detailed explanation of how to solve the conflict of project URLs caused by setting the default path of Tomcat
  • Solution to Tomcat server failing to open tomcat7w.exe

<<:  Detailed summary of MySQL and connection-related timeouts

>>:  CocosCreator Universal Framework Design Network

Recommend

The three new indexes added in MySQL 8 are hidden, descending, and functions

Table of contents Hidden, descending, and functio...

Working principle and example analysis of Linux NFS mechanism

What is NFS? network file system A method or mech...

A brief discussion on the binary family of JS

Table of contents Overview Blob Blob in Action Bl...

Tips for importing csv, excel or sql files into MySQL

1. Import csv file Use the following command: 1.m...

Flex layout achieves fixed number of rows per line + adaptive layout

This article introduces the flex layout to achiev...

Example of automatic stop effect after text scrolling

The effect is very simple, just copy the following...

Why the CSS attribute value clear:right does not work in detail

Using the clear property to clear floats is a comm...

html+css+js to realize the function of photo preview and upload picture

Preface: When we are making web pages, we often n...

Element avatar upload practice

This article uses the element official website an...

MySQL uses variables to implement various sorting

Core code -- Below I will demonstrate the impleme...

Summary of web designers' experience and skills in learning web design

As the company's influence grows and its prod...

Complete steps to install MySQL 8.0.x on Linux

MySQL Introduction to MySQL MySQL was originally ...

This article teaches you how to play with CSS border

Border Style The border-style property specifies ...

How to start Vue project with M1 pro chip

Table of contents introduction Install Homebrew I...