博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
struts入门
阅读量:5230 次
发布时间:2019-06-14

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

Struts开发步骤:

1. web项目,引入struts - jar包

2. web.xml中,引入struts的核心功能

                   配置过滤器

3. 开发action

4. 配置action

         src/struts.xml


引用jar包

web.xml

struts2
org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter
struts2
/*
index.jsp

开发action

package demo;import com.opensymphony.xwork2.ActionSupport;public class HelloAction extends ActionSupport {    // 处理请求    public String execute() throws Exception {        System.out.println("访问到了action,正在处理请求");        System.out.println("调用service");        return "success";    }}

配置action

/success.jsp

 

转载于:https://www.cnblogs.com/loaderman/p/10025478.html

你可能感兴趣的文章
【译】在Asp.Net中操作PDF - iTextSharp - 使用字体
查看>>
.net 文本框只允许输入XX,(正则表达式)
查看>>
Python 第四十五章 MySQL 内容回顾
查看>>
实验2-2
查看>>
MongoDB遇到的疑似数据丢失的问题。不要用InsertMany!
查看>>
android smack MultiUserChat.getHostedRooms( NullPointerException)
查看>>
实用的VMware虚拟机使用技巧十一例
查看>>
监控工具之---Prometheus 安装详解(三)
查看>>
不错的MVC文章
查看>>
IOS Google语音识别更新啦!!!
查看>>
[置顶] Linux终端中使用上一命令减少键盘输入
查看>>
BootScrap
查看>>
路冉的JavaScript学习笔记-2015年1月23日
查看>>
Mysql出现(10061)错误提示的暴力解决办法
查看>>
2018-2019-2 网络对抗技术 20165202 Exp3 免杀原理与实践
查看>>
NPM慢怎么办 - nrm切换资源镜像
查看>>
Swift - UIView的常用属性和常用方法总结
查看>>
Swift - 异步加载各网站的favicon图标,并在单元格中显示
查看>>
【Python学习笔记】1.基础知识
查看>>
梦断代码阅读笔记02
查看>>