博主今天新建一个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!