1. tomcat下载

官网:https://tomcat.apache.org/

tomcat下载与使用教程_xml

镜像地址:https://mirrors.huaweicloud.com/apache/tomcat/ 1、选择一个版本下载,官网下载速度缓慢,推荐镜像

2、对压缩包进行解压,无需进行安装,解压放置一个位置,以后不挪动。

tomcat下载与使用教程_java_02

2. 配置环境变量

1、新建系统变量

变量名:CATALINA_HOME 变量值:tomcat路径

tomcat下载与使用教程_xml_03


2、加入Path

tomcat下载与使用教程_xml_04

3. tomcat启动

1、win+R打开cmd,输入startup,之后弹出一个窗口,不要关闭

tomcat下载与使用教程_tomcat_05


2、浏览器输入localhost:8080/

tomcat下载与使用教程_tomcat_06


成功!

4. IDEA配置tomcat

1、右上角->Edit Configuration

tomcat下载与使用教程_java_07

2、Tomcat Server -> Local

tomcat下载与使用教程_xml_08


3、配置Tomcat路径:Configure - > OK

tomcat下载与使用教程_tomcat_09


4、配置JRE路径

tomcat下载与使用教程_xml_10


5、Deployment -> +

tomcat下载与使用教程_xml_11


至此,IDEA配置Tomcat便完毕!

5. IDEA测试Tomcat使用

写一个简单的测试程序,代码结构如下:

tomcat下载与使用教程_tomcat_12


Person.java

package com.atguigu.demo;

public class Person {
    public String getName() {
        return "tom";
    }
}

index.jsp

<%@ page import="com.atguigu.demo.Person" %>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
    <title>首页</title>
</head>
<body>
<%=new Person().getName() %>
</body>
</html>

web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"
         version="4.0">
</web-app>

运行代码

tomcat下载与使用教程_xml_13


之后弹出页面

tomcat下载与使用教程_xml_14


成功!