Struts2
文章平均质量分 73
egrdfgd
这个作者很懒,什么都没留下…
展开
-
Struts2流程总结
Struts 流程总结 1、Web.xml: struts2 org.apache.struts2.dispatcher.FilterDispatcher struts2 /* 2、前台页面: 在前台页面中使用Struts2的标签库,基本操作是导入标签库需要的文件,然后可以使用标签,操作如下: ...原创 2010-01-29 18:11:17 · 62 阅读 · 0 评论 -
Struts2拦截器基本流程
Struts2拦截器(动态代理) 1. 实现接口:Interceptor顶层接口,拦截器都必须直接或间接实现这个接口,后面介绍继承类。public class MyInterceptor implements Interceptor{init()方法 public String intercept(ActionInvocation invocation) throws Exception { ...原创 2010-02-02 08:44:14 · 106 阅读 · 0 评论 -
Struts2上传
Struts2上传下载: Struts 2是通过Commons FileUpload文件上传。Commons FileUpload通过将HTTP的数据保存到临时文件夹,然后Struts使用fileUpload拦截器将文件绑定到Action的实例中。从而我们就能够以本地文件方式的操作浏览器上传的文件。 需要导入的包文件:commons-fileupload-1.1.1.jar和commons-i...原创 2010-02-03 08:24:49 · 91 阅读 · 0 评论 -
Struts2获取项目路径
ActionContext ac = ActionContext.getContext(); ServletContext sc = (ServletContext) ac.get(ServletActionContext.SERVLET_CONTEXT); String path = sc.getRealPath("/"); 只能获取到Tomcat中的路径。...原创 2010-02-03 11:35:51 · 229 阅读 · 0 评论 -
利用apache的FileUpload组件进行文件上传。
需要导入的包文件:commons-fileupload-1.1.1.jar和commons-io-1.1.jar 页面: username: password: file1 : file2 : servlet: public UploadServlet extends HttpServlet{ public void doPost(Http...原创 2010-02-04 08:22:53 · 121 阅读 · 0 评论