文章分类 -  Struts2

摘要://action类代码package com.rocky.uploadaction;import java.io.File;import org.apache.commons.io.FileUtils;import org.apache.struts2.ServletActionContext;import com.opensymphony.xwork2.ActionContext;import com.opensymphony.xwork2.ActionSupport;public class ImageAction extends ActionSupport { public File f 阅读全文
posted @ 2013-01-29 16:37 chenxiaofeng 阅读(1477) 评论(0) 推荐(0)
摘要:Convention插件零配置Introduction从struts2.1版本开始,Convention Plugin作为替换替换Codebehind Plugin来实现Struts2的零配置。• 包命名习惯来指定Action位置• 命名习惯制定结果(支持JSP,FreeMarker等)路径• 类名到URL的约定转换• 包名到命名空间(namespace)的约定转换• 遵循SEO规范的链接地址(即:使用my-action 来替代 MyAction)• 基于注解的Action名• 基于注解的拦截机(Interceptor)• 基于注解的命名空间(N... 阅读全文
posted @ 2013-01-29 16:26 chenxiaofeng 阅读(166) 评论(0) 推荐(0)