目标:页面上传一个客户id 跳转页面
1.创建maven项目(参考上一篇)
2.创建一个jsp页面
------------------------------添加依赖----------------------------
<dependencies>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jsp-api</artifactId>
<version>2.0</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.5</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.10</version>
</dependency>
</dependencies>
2.------------------------------添加struts2的依赖包(struts-core 核心包必须要引入)
同上
3.-------------------建一个action-----------------------
4----------------------在resource目录下配置一个struts.xml
5----------------------------配置web.xml---------------------------
6--------------------运行----------------------------
7-----------------------报错了--------------------------
原因是我加入jsp-api和servlet-api 依赖时和Tomcat里面这两个包冲突了
解决方法就是将冲突的包
运行成功