悟生慧

 
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 27 下一页

2011年7月6日

struts2文件上传

摘要: 文件上传第一步:在WEB-INF/lib下加入commons-fileupload-1.2.1.jar、commons-io-1.3.2.jar这两个文件可以从http://commons.apache.org/下载第二步:把form表的enctype设置为:"multipart/form-data",如下<form enctype="multipart/form-data" action="${pageContextrequest.contextPath}/xxx.action" method="post" 阅读全文

posted @ 2011-07-06 21:21 悟生慧 阅读(1146) 评论(0) 推荐(0) 编辑

2011年7月5日

Action的类型转换器

摘要: 类型转换器局部类型转换器 对某个Action全局类型转换器 所有Action的某个类型起作用com.opensymphony.xwork2.conversion.impl.DefaultTypeConverter;public class DateTypeConverter extends DefaultTypeConverter{ public Object convertValue(Map<String,Object> context,Object value, Class toType) { SimpleDateFormat dateFormat = new SimpleDa 阅读全文

posted @ 2011-07-05 21:55 悟生慧 阅读(2189) 评论(0) 推荐(0) 编辑

2011年7月4日

如何为应用指定多个struts配置文件

摘要: 如何为应用指定多个struts配置文件在大部分应用里,随着应用规模的增加,系统中Action的数量也会大量增加,导致struts.xml配置文件变得非常臃肿,为了避免struts.xml文件过于庞大、臃肿,提高Struts.xml文件的可读性,我们可以将一个struts.xml配置文件分解成多个配置文件,然后再struts.xml文件中包含其他配置文件。通过<include>元素指定多个配置文件 <struts> <include file="department.xml"/> 一个模块使用一个配置文件 <include file= 阅读全文

posted @ 2011-07-04 22:25 悟生慧 阅读(1329) 评论(0) 推荐(0) 编辑

Struts2中Action各种转发类型

摘要: Struts2:Action中result的各种转发类型:内部请求转发dispatcher(默认值)redirect、redirectAction、plainText1.redirect是重定向到某个路径、视图<action name="redirect">/***重定向 <result type="redirect">/employeeAdd.jsp?username=${username}</result></action>URLEncoder.encode("传智播客"," 阅读全文

posted @ 2011-07-04 21:28 悟生慧 阅读(15018) 评论(0) 推荐(1) 编辑

2011年7月3日

Action配置中的各项默认值

摘要: Action配置中的各项默认值1>如果没有为action指定class,默认值是ActionSupport2>如果没有为action指定method,默认执行action中的execute()方法3>如果没有指定result的name属性,默认值为success--------------------------------------------------------------------------------------------常用的常量介绍指定需要Struts 2处理的请求后缀常量可以在struts.xml或struts.properties中配置,建议在st 阅读全文

posted @ 2011-07-03 23:20 悟生慧 阅读(1716) 评论(0) 推荐(0) 编辑

框架集成

摘要: Struts2+Spring2.5+Hibernate3.3整合开发先整合Spring2.5+Hibernate3.3hibernate核心安装包下的(下载路径:http://www.hibernate.org/),点击"Hibernate Core" 右边的"DownLoads"hibernamte3.jarlib\bvtecode\calib\jobernate-cglib-repack-2.1_3.jarlib\required\*.jarhibernate注解安装包下的(下载路径:www.hibernate.org,点击"Hiberna 阅读全文

posted @ 2011-07-03 22:40 悟生慧 阅读(316) 评论(0) 推荐(0) 编辑

第一个struts2应用

摘要: 第一个struts2应用1.在struts配置文件中<struts><package name="itcast" 惟一哦 namespace="/test" extends="struts-default" 继承> <action name="helloworld" action的名称 class="cn.itcast.action.HelloWorldAction" action的类 method="execute" 交给这个方法处理> 阅读全文

posted @ 2011-07-03 21:15 悟生慧 阅读(529) 评论(0) 推荐(0) 编辑

struts2的开发环境配置2.1.6版本

摘要: struts2和WebWork2的基础上发展而来的Struts2和Struts1代码编码风格上几乎不一样 优点:Struts2无侵入式设计 不依赖于Struts的类、ServletAPIStruts提供了类型转换器 视图层有Velocity不知道的输入校验可以对指定方法进行校验,解决了Struts1长久之痛提供了全局范围、包范围和Action范围的国际化资源文件管理实现如何搭建Struts2的开发环境1.找到开发Struts2应用需要使用到的jar文件2.编写Struts2的配置文件3.在Web.xml中加入Struts2MVC框架启动配置1.主要jar文件struts2-core-2.x.x 阅读全文

posted @ 2011-07-03 20:34 悟生慧 阅读(824) 评论(0) 推荐(0) 编辑

2011年6月24日

动态修改DataTable中某列的值并绑定到DataGridView

摘要: DataTable dt = igmbll.getAllVWShopGoodsPurMas(); foreach (DataRow Row in dt.Rows) { Row[4] = Convert.ToDecimal(Row[4].ToString()); dgvVWShopGoodPurMas.Rows.Add(Row.ItemArray);// } this.dgvVWShopGoodPurMas.DataSource = dt; 阅读全文

posted @ 2011-06-24 15:20 悟生慧 阅读(2076) 评论(0) 推荐(0) 编辑

2011年6月23日

C#使用递归算法给TreeView控件绑定数据

摘要: /// <summary> /// 查找根节点(parent_ID为0的节点)的子节点 /// </summary> /// <param name="parent_ID">参数,接收根节点ID即0</param> public void bindtree(string parent_ID) { this.tvgood.Nodes.Clear(); DataTable dt = frmgb.Getdata(parent_ID); if (dt.Rows.Count > 0) { for (int i = 0; i < 阅读全文

posted @ 2011-06-23 11:07 悟生慧 阅读(1567) 评论(0) 推荐(0) 编辑

上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 27 下一页

导航