一、准备
- 下载安装
Apache-maven-3.5.2 下载地址:http://archive.apache.org/dist/maven/maven-3/ - 在IDEA中配置maven环境
以上配置只对模块起作用,在新建项目后得重新配置,这是第一个坑,也是不好搞~~~
二、创建maven的web项目
1.选中maven
2.填写项目坐标和名称
3.再次确认环境配置
4.完成创建
三、开始编写项目
- 在pom.xml 配置文件中导入jar包
<dependencies>
<!--放置Servlet-->
<!--maven没有自带Servlet项目-->
<dependency>
<groupId>jstl</groupId>
<artifactId>jstl</artifactId>
<version>1.2</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.0.1</version>
<scope>provided</scope> <!--指定作用域,避免与本机的tomcat自带jar起冲突-->
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jsp-api</artifactId>
<version>2.0</version>
<scope>provided</scope> <!--指定作用域-->
</dependency>
</dependencies>
2.配置相关环境
<plugins>
<!--配置tomcat7-->
<!--maven自带tomcat6,会有冲突-->
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<version>2.2</version>
<configuration>
<port>8080</port>
</configuration>
</plugin>
<!--配置jdk1.8-->
<!--maven自带jdk1.4,版本过低-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<target>1.8</target>
<source>1.8</source>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
</plugins>
3.编写项目
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
@WebServlet("/myServlet") <!--指定访问路径-->
public class MyServlet extends HttpServlet {
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
request.getRequestDispatcher("/hello.jsp").forward(request,response);
}
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
this.doPost(request, response);
}
}
<html>
<head>
<title>hahhah</title>
</head>
<body>
hello maven......
</body>
</html>
四.启动maven项目
1.打开运行框
2.输入运行命令
3.复制地址到浏览器
4.结果tomcat6报错
第个二大坑,弄得我快要上天!!!
5.启用tomcat7启动项目
终于看到这个
6.访问servlet项目
成功跳转到jsp页面