博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Struts 框架 之 Hello World
阅读量:5891 次
发布时间:2019-06-19

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

Struts HelloWorld

第一步   导jar包 

commons-fileupload-1.2.2.jar   【文件上传相关包】

commons-io-2.0.1.jar        【输入输出相关包】

struts2-core-2.3.4.1.jar          【struts2核心功能包】

xwork-core-2.3.4.1.jar            【Xwork核心包】

ognl-3.0.5.jar                         【Ognl表达式功能支持表】

commons-lang3-3.1.jar           【struts对java.lang包的扩展】

freemarker-2.3.19.jar              【struts的标签模板库jar文件】

javassist-3.11.0.GA.jar            【struts对字节码的处理相关jar】

第二步  配置web.xml

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

第三步 开发action 处理请求

package com.struts.action;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";        }}

 

第四步  配置 struts.xml   文件放在 src下

/MyJsp.jsp

 

好 struts helloworld 就完工了。

转载地址:http://nabsx.baihongyu.com/

你可能感兴趣的文章
linux信号
查看>>
微信js分享第三方链接
查看>>
linux
查看>>
pandas按索引插入对应值的处理方法 - join
查看>>
人月神话读后感(1)
查看>>
CSS3权威指南-浮动2
查看>>
mysql ERROR 1018 (HY000): Can't read dir of '.' (errno: 24)
查看>>
Swift3中函数的使用
查看>>
0044-邮局汇款
查看>>
MySQL 设计规范
查看>>
ReportView报表开发记录(一)
查看>>
微信导出表情包教程
查看>>
Http帮助类(史上最详细帮助类)
查看>>
exit()和return语句的区别
查看>>
Json Schema
查看>>
Myeclipse开发常用快捷键
查看>>
简单介绍java Enumeration(转)
查看>>
此生若能得幸福安稳,谁又愿颠沛流离
查看>>
BCD码
查看>>
django静态模版使用
查看>>