Apache Tomcat 代码仓库

Tomcat 代码仓库

完整的 Apache Tomcat 教学,请跳转此链接“史上最友好的服务器 Tomcat 搭建小白入门”

欢迎来到 Tomcat 的工具类-——代码仓库

文章目录

  • Tomcat 代码仓库
        • 项目结构
        • Maven 配置文件
        • hello.html

项目结构

Apache Tomcat 代码仓库_第1张图片

Maven 配置文件

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  <modelVersion>4.0.0modelVersion>
  <groupId>org.examplegroupId>
  <artifactId>webdemoartifactId>
  <packaging>warpackaging>
  <version>1.0-SNAPSHOTversion>
  <name>webdemo Maven Webappname>
  <url>http://maven.apache.orgurl>
  <dependencies>
    <dependency>
      <groupId>junitgroupId>
      <artifactId>junitartifactId>
      <version>3.8.1version>
      <scope>testscope>
    dependency>
  dependencies>
  <build>
    <finalName>webdemofinalName>
    <plugins>
      <plugin>
        
        <groupId>org.apache.tomcat.mavengroupId>
        <artifactId>tomcat7-maven-pluginartifactId>
        <version>2.2version>
        <configuration>
          
          <port>80port>
          
          <path>/path>
        configuration>
      plugin>
    plugins>
  build>
project>

hello.html

<html>
<title>hellotitle>
<body>
hello,world
body>
html>

你可能感兴趣的:(代码仓库,tomcat,java,servlet,macos)