- 浏览: 698333 次
- 性别:
- 来自: 北京
文章分类
- 全部博客 (362)
- java基础 (33)
- html/css+div/javascript (17)
- Ajax/XML/JSON/XSL (7)
- JQuery (11)
- Extjs (1)
- JSP/Servlet (19)
- MVC模式 (4)
- struts 1 (17)
- Struts 2.3.4 (17)
- Spring 3.2 (26)
- Springmvc (3)
- Hibernate 4.1 (21)
- ibatis (6)
- Velocity模板语言 (2)
- Rose框架 (5)
- EJB (1)
- JUnit测试 (2)
- 数据库DB (24)
- 重构 / 设计模式 (3)
- 开发工具IDE (37)
- 数据结构与算法设计 (3)
- Android (12)
- Linux (4)
- bug集合 (29)
- 缓存技术(redis) (3)
- Lucene全文索引 (15)
- maven3.0.5 (4)
- 小工具集合 (18)
- 面试题 (5)
- 闲聊 (11)
- 其他 (4)
- 接口API (2)
- work (2)
- Flex (0)
- JMS (1)
- 开源项目集合 (1)
- 技术博客 (1)
- 分类04 (0)
- 分类05555 (0)
最新评论
-
小小小羊:
好屌...
java.lang.NoClassDefFoundError: org/aspectj/weaver/reflect/ReflectionWorld$Refle -
liubinli2005:
这个可以脱底spring。单独使用吗?
DAO层:jade -
cangbaotu:
我觉得对于开发者来说,能脚本化编写爬虫是一件挺开心的事情( ̄▽ ...
网页爬取 -
asjava:
很好的文章, 但每段代码清单都重复了一次.
spring 事务 -
xia635317478:
jethypc 写道验证码的session无法传过去啊 还是我 ...
登陆验证码(struts2实现)
Struts2学习笔记
1.官网下载包
2.struts.xml尖括号提示:
3.工作流程图
4.常量配置
5.jsp引入的标签s
5.struts.xml以及其他XML配置
5.struts.xml配置前台UI标签样式
5.拦截器执行过程
5.
5.
5.
5.
5.
1.官网下载包
URL:http://struts.apache.org/ 解压:/apps/struts2-blank.war 拷贝:struts.xml+web.xml+jar
2.struts.xml尖括号提示:
a.解压struts2-core-2.3.15.1.jar b.windows--preferences--catalog--add: 解压文件中的dtd URL http://struts.apache.org/dtds/struts-2.3.dtd
3.工作流程图
4.常量配置
struts.xml配置: <constant name="struts.i18n.encoding" value="UTF-8"/> 该常量会覆盖struts2-core-2.3.15.jar包中/org.apache.struts2.default.properties中的值
5.jsp引入的标签s
<%@ taglib prefix="s" uri="/struts-tags" %> 这个uri对应该struts2-core-2.3.15.jar包中/META-INF/struts-tags.tld 该文件中: <display-name>Struts Tags</display-name> <tlib-version>2.3</tlib-version> <short-name>s</short-name> <uri>/struts-tags</uri> 处理类:<tag-class>org.apache.struts2.views.jsp.ActionTag</tag-class> 这个uri和此处的uri对应
5.struts.xml以及其他XML配置
<?xml version="1.0" encoding="UTF-8" ?> 1.struts.xml: <!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.3//EN" "http://struts.apache.org/dtds/struts-2.3.dtd"> <struts> <!-- true:开发模式,修改XML配置文件不用重启服务 --> <constant name="struts.devMode" value="false" /> <constant name="struts.i18n.encoding" value="UTF-8"/> <constant name="struts.enable.DynamicMethodInvocation" value="false" /> <package name="default" namespace="/default" extends="struts-default"> <!-- 公共的跳转页面,所有Action都可以调用该result --> <global-results> <result name="error">/views/error.jsp</result> </global-results> <!-- 异常错误处理页面 --> <global-exception-mappings> <exception-mapping exception="java.lang.Exception" result="error"/> </global-exception-mappings> </package> <!-- xml文件列表 --> <include file="/default.xml"/> <include file="/home.xml"/> <include file="/userInfo.xml"/> </struts> extends="struts-default":继承了struts2-core-2.3.15.jar包中struts-default.xml的: result结果集 Interceptor拦截器等 2.userInfo.xml: <?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN" "http://struts.apache.org/dtds/struts-2.0.dtd"> <struts> <package name="userInfoPackage" namespace="/" extends="default"> <action name="userInfo_*" class="com.momo.action.UserInfoAction" method="{1}"> <result name="success">/views/userInfo/userInfo_{1}_success.jsp</result> <result name="fail">/views/userInfo/userInfo_{1}_fail.jsp</result> </action> <!-- 服务其跳转:页面 --> <action name="dispatcher"> <result type="dispatcher">/views/userInfo/dispatcher.jsp</result> </action> <!-- 客户端跳转:页面 --> <action name="redirect"> <result type="redirect">/views/userInfo/redirect.jsp</result> </action> <!-- 服务器跳转:Action方法 --> <action name="chain"> <result type="chain"> <!-- 指定要跳转的Action位置 --> <param name="namespace">/</param> <param name="actionName">dispatcher</param> </result> </action> <!-- 客户端跳转:Action方法 --> <action name="redirectAction"> <result type="redirectAction">redirect</result> </action> </package> </struts> extends="default":可以共用namespace="default"目录中的结果集result
5.struts.xml配置前台UI标签样式
struts.xml: <constant name="struts.ui.theme" value="simple"/><!-- UI标签类型(ajax,simple,xhtml,css_xhtml) --> jsp: <s:form> <s:fielderror/> </s:form> html源码样式会采用最简单的,支持本地覆盖struts2-core-2.3.15.jar包中template中的模板也支持自定义模板
5.拦截器执行过程
模拟原理如下: Main.java ActionInvocation.java Interceptor.java FirstInterceptor.java SecondInterceptor.java Action.java
public class Main { public static void main(String[] args) { new ActionInvocation().invoke(); } }
public class ActionInvocation { List<Interceptor> interceptors = new ArrayList<Interceptor>(); int index = -1; Action a = new Action(); public ActionInvocation() { this.interceptors.add(new FirstInterceptor()); this.interceptors.add(new SecondInterceptor()); } public void invoke() { index ++; if(index >= this.interceptors.size()) { a.execute(); }else { this.interceptors.get(index).intercept(this); } } }
public interface Interceptor { public void intercept(ActionInvocation invocation) ; }
public class FirstInterceptor implements Interceptor { public void intercept(ActionInvocation invocation) { System.out.println(1); invocation.invoke(); System.out.println(-1); } }
public class SecondInterceptor implements Interceptor { public void intercept(ActionInvocation invocation) { System.out.println(2); invocation.invoke(); System.out.println(-2); } }
public class Action { public void execute() { System.out.println("execute!"); } }
5.
5.
5.
5.
5.
发表评论
-
Spring分别与Struts1.x 和Struts2.x集成方法
2012-11-16 14:05 1519Spring分别与Struts1.x 和Struts2.x集成 ... -
Struts2_Action处理类获取Scope对象
2012-11-16 14:05 561Struts2_Action处理类获取Scope对象 1 ... -
Struts2一个Action内包含多个请求处理方法(三种方式)
2012-11-12 09:29 1208Struts2一个Action内包含多个请求处理方法(三种方式 ... -
struts2中 ServletActionContext与ActionContext区别 .
2012-10-30 17:29 1127http://blog.csdn.net/lushuaiyin ... -
上传功能的实现(Struts2)
2012-10-12 09:18 1145上传功能的实现(Struts2) 在WebRoot根目录新建 ... -
Struts2配置文件详解
2012-10-08 14:33 1015struts2共有4类配置文件, struts.pr ... -
Action处理类
2012-10-08 14:16 890Action处理类 一、可以实现Action接口 ... -
struts2标签02
2012-10-08 13:54 1748struts2标签02 34. property ... -
struts2标签01
2012-10-08 13:42 1512Struts 2标签01 1.a 3 2.actio ... -
type="diapatcher Redirect RedirectAction"配置文件struts.xml
2012-10-08 11:23 3476type="diapatcher Redirec ... -
在Struts2里使用HttpServletRequest、HttpSession、ServletContext
2012-10-07 23:56 1232在Struts2里使用HttpServletRequest、H ... -
Struts2工作原理
2012-10-07 22:41 1111Struts2工作原理 处理原理: 1.客户初 ... -
struts2标签:<s:iterator 中的status 使用方法
2012-09-22 21:20 5916【转】<s:iterator 中的status 使用方法 ... -
serialVersionUID = -8204063374280945416L;
2012-09-22 11:05 1032serialVersionUID 实现java.io ... -
模拟struts2处理原理
2012-10-09 00:08 1170模拟struts 2处理原理 模拟struts2处理流程的原 ... -
<s:radio> struts标签
2012-09-07 09:52 1232遇到的问题:在使用该标签时,设置了默认选中项,但提交数据返回后 ...
相关推荐
pandas whl安装包,对应各个python版本和系统(具体看资源名字),找准自己对应的下载即可! 下载后解压出来是已.whl为后缀的安装包,进入终端,直接pip install pandas-xxx.whl即可,非常方便。 再也不用担心pip联网下载网络超时,各种安装不成功的问题。
基于java的大学生兼职信息系统答辩PPT.pptx
基于java的乐校园二手书交易管理系统答辩PPT.pptx
tornado-6.4-cp38-abi3-musllinux_1_1_i686.whl
Android Studio Ladybug 2024.2.1(android-studio-2024.2.1.10-mac.dmg)适用于macOS Intel系统,文件使用360压缩软件分割成两个压缩包,必须一起下载使用: part1: https://download.csdn.net/download/weixin_43800734/89954174 part2: https://download.csdn.net/download/weixin_43800734/89954175
有学生和教师两种角色 登录和注册模块 考场信息模块 考试信息模块 点我收藏 功能 监考安排模块 考场类型模块 系统公告模块 个人中心模块: 1、修改个人信息,可以上传图片 2、我的收藏列表 账号管理模块 服务模块 eclipse或者idea 均可以运行 jdk1.8 apache-maven-3.6 mysql5.7及以上 tomcat 8.0及以上版本
tornado-6.1b2-cp38-cp38-macosx_10_9_x86_64.whl
Android Studio Ladybug 2024.2.1(android-studio-2024.2.1.10-mac.dmg)适用于macOS Intel系统,文件使用360压缩软件分割成两个压缩包,必须一起下载使用: part1: https://download.csdn.net/download/weixin_43800734/89954174 part2: https://download.csdn.net/download/weixin_43800734/89954175
matlab
基于java的毕业生就业信息管理系统答辩PPT.pptx
随着高等教育的普及和毕业设计的日益重要,为了方便教师、学生和管理员进行毕业设计的选题和管理,我们开发了这款基于Web的毕业设计选题系统。 该系统主要包括教师管理、院系管理、学生管理等多个模块。在教师管理模块中,管理员可以新增、删除教师信息,并查看教师的详细资料,方便进行教师资源的分配和管理。院系管理模块则允许管理员对各个院系的信息进行管理和维护,确保信息的准确性和完整性。 学生管理模块是系统的核心之一,它提供了学生选题、任务书管理、开题报告管理、开题成绩管理等功能。学生可以在此模块中进行毕业设计的选题,并上传任务书和开题报告,管理员和教师则可以对学生的报告进行审阅和评分。 此外,系统还具备课题分类管理和课题信息管理功能,方便对毕业设计课题进行分类和归档,提高管理效率。在线留言功能则为学生、教师和管理员提供了一个交流互动的平台,可以就毕业设计相关问题进行讨论和解答。 整个系统设计简洁明了,操作便捷,大大提高了毕业设计的选题和管理效率,为高等教育的发展做出了积极贡献。
这个数据集来自世界卫生组织(WHO),包含了2000年至2015年期间193个国家的预期寿命和相关健康因素的数据。它提供了一个全面的视角,用于分析影响全球人口预期寿命的多种因素。数据集涵盖了从婴儿死亡率、GDP、BMI到免疫接种覆盖率等多个维度,为研究者提供了丰富的信息来探索和预测预期寿命。 该数据集的特点在于其跨国家的比较性,使得研究者能够识别出不同国家之间预期寿命的差异,并分析这些差异背后的原因。数据集包含22个特征列和2938行数据,涉及的变量被分为几个大类:免疫相关因素、死亡因素、经济因素和社会因素。这些数据不仅有助于了解全球健康趋势,还可以辅助制定公共卫生政策和社会福利计划。 数据集的处理包括对缺失值的处理、数据类型转换以及去重等步骤,以确保数据的准确性和可靠性。研究者可以使用这个数据集来探索如教育、健康习惯、生活方式等因素如何影响人们的寿命,以及不同国家的经济发展水平如何与预期寿命相关联。此外,数据集还可以用于预测模型的构建,通过回归分析等统计方法来预测预期寿命。 总的来说,这个数据集是研究全球健康和预期寿命变化的宝贵资源,它不仅提供了历史数据,还为未来的研究和政策制
基于微信小程序的高校毕业论文管理系统小程序答辩PPT.pptx
基于java的超市 Pos 收银管理系统答辩PPT.pptx
基于java的网上报名系统答辩PPT.pptx
基于java的网上书城答辩PPT.pptx
婚恋网站 SSM毕业设计 附带论文 启动教程:https://www.bilibili.com/video/BV1GK1iYyE2B
基于java的戒烟网站答辩PPT.pptx
基于微信小程序的“健康早知道”微信小程序答辩PPT.pptx
Capital Bikeshare 数据集是一个包含从2020年5月到2024年8月的自行车共享使用情况的数据集。这个数据集记录了华盛顿特区Capital Bikeshare项目中自行车的租赁模式,包括了骑行的持续时间、开始和结束日期时间、起始和结束站点、使用的自行车编号、用户类型(注册会员或临时用户)等信息。这些数据可以帮助分析和预测自行车共享系统的需求模式,以及了解用户行为和偏好。 数据集的特点包括: 时间范围:覆盖了四年多的时间,提供了长期的数据观察。 细节丰富:包含了每次骑行的详细信息,如日期、时间、天气条件、季节等,有助于深入分析。 用户分类:数据中区分了注册用户和临时用户,可以分析不同用户群体的使用习惯。 天气和季节因素:包含了天气情况和季节信息,可以研究这些因素对骑行需求的影响。 通过分析这个数据集,可以得出关于自行车共享使用模式的多种见解,比如一天中不同时间段的使用高峰、不同天气条件下的使用差异、季节性变化对骑行需求的影响等。这些信息对于城市规划者、交通管理者以及自行车共享服务提供商来说都是非常宝贵的,可以帮助他们优化服务、提高效率和满足用户需求。同时,这个数据集也