1.导入struts的基本jar包
2.在web.xml中配置我们struts的核心控制器StrutsPrepareAndExecuteFilter
ssh_spring ssh org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter ssh /* index.html index.htm index.jsp default.html default.htm default.jsp
3.编写我们的CustomerAction
package com.itheima.action;import com.itheima.entity.Customer;import com.opensymphony.xwork2.ActionSupport;import com.opensymphony.xwork2.ModelDriven;public class CustomerAction extends ActionSupport implements ModelDriven{ private Customer customer = new Customer(); public Customer getModel() { return customer; } //进入添加页面 public String addCustomerUI(){ return this.SUCCESS; } //进入列表页面 public String getAllCustomer(){ return this.SUCCESS; }}
4.编写我们的struts的核心配置文件struts.xml
/jsp/customer/add.jsp /jsp/customer/list.jsp
5.导入我们的jsp页面,并对我们的jsp页面中内容进行修改
完了我们把我们的项目部署到tomcat上,然后访问地址 http://localhost:8080/ssh_spring/
这样的话,我们的struts的单独运行环境就搭建好了,每天进步一点点!