struts2
文章平均质量分 75
luxiangxing
这个作者很懒,什么都没留下…
展开
-
Struts2 文件上传 之 文件类型 allowedTypes
'.a' : 'application/octet-stream', '.ai' : 'application/postscript', '.aif' : 'audio/x-aiff', '.aifc' : 'audio/x-aiff'...原创 2010-12-12 16:03:17 · 100 阅读 · 0 评论 -
Struts2+Spring+Hibernate整合(续Struts2+Spring整合)
前面已经讲述了Struts2+Spring整合,这里我们接着整合Hibernate整合Hibernate1)导入Hibernate3.1的jar包:antlr-2.7.6.jar,commons-collections-3.1.jar,dom4j-1.6.1.jar,javassist-3.4.GA.jar,jta-1.1.jar,hibernate3.jar,slf4j-...原创 2010-12-07 19:55:32 · 71 阅读 · 0 评论 -
Struts2+Spring整合
Struts2和Spring整合,创建一个OA工程1、整合struts21)导入strut2的jar包:commons-logging-1.0.4.jar,freemarker-2.3.8.jar,ognl-2.6.11.jar,struts2-core-2.0.12.jar,xwork-2.06.jar。暂时导入这些jar包,到时候需要再倒入。2)将struts.xm...原创 2010-12-07 19:52:50 · 74 阅读 · 0 评论 -
struts 2 中增加拦截器
吃完午饭了,公司食堂真垃圾,点了份白切鸡 尽是鸡皮和鸡脖子,就4块肉,下面还垫了层香菜~~~~~~ 好了,继续来说下午的拦截器,在上午的基础上加了拦截器 1.改装了下struts.xml<!DOCTYPE struts PUBLIC"-//Apache Software Foundation//DTD Struts Configuration 2.0/...原创 2010-11-19 02:48:50 · 89 阅读 · 0 评论 -
struts 2中当SESSION过期后返回登陆页面
在struts2+spring+hibernate 的体系中,经常要遇到的一个问题就是当用户登陆后,SESSION超过指定的时间后,当用户再点某个连接时,系统会自动返回到登陆的页面。在实现时候,由于是STRUTS2,因此可以充分利用拦截器。拦截器示例代码如下 ActionContext ctx = ActionContext.getContext(); Map se...原创 2010-11-19 02:04:27 · 91 阅读 · 0 评论 -
struts2 消息提示或错误提示
>>action中调用 this.addActionError("actionError!"); this.addActionMessage("actionMessage!"); this.addFieldError("field", "fieldError"); ...原创 2010-09-07 00:33:08 · 106 阅读 · 0 评论 -
Struts2 标签应用
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%><%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions"%><%@ taglib prefix="s" uri="/st原创 2010-08-28 12:57:57 · 85 阅读 · 0 评论 -
struts2 annotation 配置
>> ----------> @Action 重定向@Action(value = "/code/generatePoject", results = { @Result(name = "success", location = "project/list", type= "redirectAction")})<2010-08-26 22:58:50 · 68 阅读 · 0 评论 -
Struts2快速后台验证框架使用说明书
http://code.google.com/u/beansoft/updateshttp://code.google.com/p/tomcatmonitor/downloads/detail?name=quickvalidemo.zip目录简介... 1整合步骤... 1验证规则表达式详解... 5和RapidValidation配合实现前后台一致验证....原创 2010-12-14 19:17:30 · 125 阅读 · 0 评论 -
struts2 注释配置
<struts> <include file="struts-default.xml"/> <!--开发模式设置开始//--> <!--++++++++++++++++++++++++++++++++++++++++++++++++开发状态 --> <constant name="struts.devMode...原创 2010-12-09 00:04:27 · 106 阅读 · 0 评论