`
文章列表
一,BeanFactory与ApplicationContext    1.1通过XML文件,配置Bean及其依赖关系,ApplicationContext是BeanFactory的子类,提供了国际化,资源等额外的功能。XML文件的配置一般要分开配置DAO,Action,Service等,通过Import引入。     1.2 XML文件的中Bean的实例化        通常是构造函数实例化,也可以是工厂实例化。        工厂实例化的例子:       <bean id="exampleBean" class="examples.ExampleBean ...
Struts框架 FormBean如果含有Bean需要从页面接受入力值 需要事先实例化。
1, 多选checkbox           <logic:iterate id="test" name="testList"> <html:multibox property="column"><bean:write name="test" property="value"/></html:multibox><bean:write name="test" property="name"/> & ...

Struts标签

1,根据Code获取属性文件中的值<bean:message key="<%=menuCd.toString()%>"/>
1,父子画面参数传递,var args = window.dialogArguments; 2,element.up("form");通过Element获取它所在的Form对象 3,window.location.href=url 4,动态在页面建立元素     var text = args[2].document.createElement('INPUT');     args[3].disabled=true;     text.setAttribute('name',args[3].getAttribute('name'));     text.setAttribut ...
  select company_cd,customer_seq_no,shop_cd,          MAX(decode(item_cd,'29', item_details_name, NULL)) ITMN_29,          MAX(decode(item_cd,'30', item_details_name, NULL)) ITMN_30,          MAX(decode(item_cd,'31', item_details_name, NULL)) ITMN_31   from(       SELECT item_cd,company_cd,shop_cd,c ...
<sqlMap namespace="Customer">   <typeAlias alias ="CustomerObject" type="com.hoyasv.crm.report.entity.customer.Customer"/>   <statement id="getCustomers"  resultClass="CustomerObject" parameterClass="java.util.Map" remapResu ...
前提:Post形式传递参数。 问题:HttpClient Post形式传递参数乱码 解决方式:扩展PostMethod public class UTF8PostMethod extends PostMethod{     public UTF8PostMethod(String url){         super(url);     }     @Override     public String getRequestCharSet() {         return "UTF-8";     } }
Global site tag (gtag.js) - Google Analytics