手动创建maven项目+cmd+webapp+tomcat
1、创建文件夹
2、在刚刚创建的文件夹目录下:创建一个scr文件夹和pom.xml文件
3、在pom.xml配置
<?xml version="1.0" encoding="UTF-8"?> <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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.wbg.test</groupId> <artifactId>maventest</artifactId> <version>1</version> <packaging>war</packaging> <build> <plugins> <plugin> <groupId>org.apache.tomcat.maven</groupId> <artifactId>tomcat7-maven-plugin</artifactId> <version>2.2</version> <configuration> <hostName>localhost</hostName> <port>8080</port> <path>/ccc</path> <uriEncoding>UTF-8</uriEncoding> </configuration> </plugin> </plugins> </build> </project>
4、在scr目录下面创建main文件夹,在main目录下面创建java文件夹,java放源码
public class start{ public static void main(String[]ager){ System.out.println("Hello Word"); } }
5、cmd编译测试
切换目录在pom.xml文件下面进行编译 mvn compile
编译成功
进行测试
6、在src目录下面创建webapp文件夹(同级java文件夹)
7、在webapp目录下创建WEB-INF文件夹+index.jsp文件
8、在WEB-INF目录下创建web.xml文件
9、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>
10、在index.jsp写网页内容
11、使用cmd命令编译(必须在pom文件目录下)
编译成功
11、进行输入mvn tomcat7:run启动
启动成功
12、进入网页测试(http://localhost:8080/ccc/)