使用Maven新建JavaWeb工程,并使用tomcat7插件运行
程序员文章站
2022-06-14 22:26:38
...
步骤一:新建maven simple project
选择create a simple…
这里打包方式选择war包
步骤二 配置POM.xml
这里pom.xml文件报错,是因为缺少web.xml文件,这里有两种解决方式一种是使用web.xml,另一种是使用注解的方式(需要servlet3.0以上)。
单说使用注解方式
在pom文件中添加如下内容错误消失。
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<version>2.1</version>
<configuration>
<port>8080</port>
<path>/</path>
<uriEncoding>UTF-8</uriEncoding>
<server>tomcat7</server>
</configuration>
</plugin>
在src/main/webapp下新建index.jsp文件内容随便填写
这里报错是因为缺少servlet的jar包,遂引入
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.0.1</version>
<scope>provided</scope>
</dependency>
添加tomcat7插件
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<version>2.1</version>
<configuration>
<port>8080</port>
<path>/</path>
<uriEncoding>UTF-8</uriEncoding>
<server>tomcat7</server>
</configuration>
</plugin>
run build…
填写完成之后run即可
上一篇: 只能输入汉字EditText:ChineseEditText
下一篇: 函数的调用过程