Maven中如何使用tomcat8的插件

博主今天新建一个maven的module,想要访问网页,按照在pom池中加入插件的方法

但是,我的本地插件包里没有tomcat,于是我找到这个插件,需要先下载这个插件!

具体方法:

在你的项目的module的pom池中加入

<pluginRepositories>
        <pluginRepository>
            <id>alfresco-public</id>
            <url>https://artifacts.alfresco.com/nexus/content/groups/public</url>
        </pluginRepository>
        <pluginRepository>
            <id>alfresco-public-snapshots</id>
            <url>https://artifacts.alfresco.com/nexus/content/groups/public-snapshots</url>
            <snapshots>
                <enabled>true</enabled>
                <updatePolicy>daily</updatePolicy>
            </snapshots>
        </pluginRepository>
        <pluginRepository>
            <id>beardedgeeks-releases</id>
            <url>http://beardedgeeks.googlecode.com/svn/repository/releases</url>
        </pluginRepository>
    </pluginRepositories>

加入以后,去maven下载:

Maven Repository: org.apache.tomcat.maven » tomcat8-maven-plugin » 3.0-r1655215 (mvnrepository.com)

一开始没找到tomcat8的插件

 

去maven repository中找到了:

 找到依赖后下载:

 或者直接复制一下依赖,放到pom中:

<!-- https://mvnrepository.com/artifact/org.apache.tomcat.maven/tomcat8-maven-plugin -->
<dependency>
    <groupId>org.apache.tomcat.maven</groupId>
    <artifactId>tomcat8-maven-plugin</artifactId>
    <version>3.0-r1655215</version>
</dependency>

下载可能需要一定的时间,耐心等待:

如果成功的话,以下这个界面不会报错,在右边plugins中可以看到tomcat8

 接下来试一下能不能直接访问网页:

写一个简单的html标题

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>

<h1>hello Maven</h1>

</body>
</html>

双击tomcat8文件下的“tomcat8:run”

打开网页:

可以更改虚拟路径和端口号: 

将pom中插件加入configeration,可以看到port设为80,路径path“/”

 <build>
        <plugins>
                <plugin>
                    <groupId>org.apache.tomcat.maven</groupId>
                    <artifactId>tomcat8-maven-plugin</artifactId>
                    <version>3.0-r1655215</version>
                    <configuration>
                        <port>80</port>
                        <path>/</path>
                    </configuration>
                </plugin>
        </plugins>
    </build>

 重新跑一次:

 可以看到地址改变:

同样可以访问到

 如果不想启动的时候太麻烦,可以在右上角工具点击“Edit Configurations”

 点击“+”,Maven ,可以命名为tomcat8,这样可以直接点击,不用再找到“tomcat8:run”

 

get!

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值