博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ssh整合之四单独搭建struts的运行环境
阅读量:5887 次
发布时间:2019-06-19

本文共 1642 字,大约阅读时间需要 5 分钟。

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的单独运行环境就搭建好了,每天进步一点点!

转载于:https://www.cnblogs.com/wh-share/p/ssh-struts.html

你可能感兴趣的文章
2.5-saltstack配置apache
查看>>
django数据库中的时间格式与页面渲染出来的时间格式不一致的处理
查看>>
Python学习笔记
查看>>
java String
查看>>
DOCKER windows 7 详细安装教程
查看>>
养眼美女绿色壁纸
查看>>
U盘启动盘制作工具箱 v1.0
查看>>
增强myEclipse的提示功能
查看>>
Zabbix汉化方法
查看>>
Java I/O系统基础知识
查看>>
Java多线程设计模式(2)生产者与消费者模式
查看>>
对象并不一定都是在堆上分配内存的
查看>>
刘宇凡:罗永浩的锤子情怀只能拿去喂狗
查看>>
php晚了8小时 PHP5中的时间相差8小时的解决办法
查看>>
JS(JavaScript)的初了解7(更新中···)
查看>>
svn文件管理器的使用
查看>>
for/foreach/linq执行效率测试
查看>>
js /jquery停止事件冒泡和阻止浏览器默认事件
查看>>
[翻译]Protocol Buffer 基础: C++
查看>>
runloop与线程的关系
查看>>