快速业务通道

数据库中数据项变化不定时如何设计Java Beans - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-20
Key", "Second Value");      }      return (hash);   }   //下面的方法对在common-beanutils 1.6.1中propertyUtils的getMappedproperty方法不起作用,中不调用这些方法,   //而且不支持嵌套的映射属性   //propertyUtils.setMappedproperty(bean, "nested.hash(Fifth Key)", "Fifth Value"); don''t work!!   public Object getHash(String Key){   System.out.println("getHash Key");   return hash.get(Key);   }   public void setHash(String Key,Object value){ System.out.println("setHash Key value ");      hash.put(Key,value);   }   //这是一个简单属性,想在propertyUtils中修改必须有设置器操作   private String sample = null;   public String getSample() {    return sample;   }   public void setSample(String sample){ this.sample = sample;   } }

数据库中数据项变化不定时如何设计Java Beans(6)

时间:2011-01-19 IBM 龚永生

3.2.2 使用propertyUtils实用类访问扩展属性

下面propertyUtils以五中格式访问扩展属性的代码:

//testpropertyUtils.java import org.apache..commons.beanutils.*; import junit.framework.TestCase; import junit.framework.Test; import junit.framework.TestSuite; public class testpropertyUtils extends TestCase { public propertyUtilsTestCase(String name) {      super(name); } /** * 实例化TestBean */ public void setUp() {      bean = new TestBean(); } /** * 测试索引属性 */ public void testSetIndexedValues() {      Object value = null;      //测试数组索引属性 try {        propertyUtils.setproperty(bean,            "dupproperty(0)",            "New 0");        value =            propertyUtils.getproperty(bean,                "dupproperty(0) ");        assertNotNull("Returned new value 0", value);        assertTrue("Returned String new value 0",            value instanceof String);        assertEquals("Returned correct new value 0", "New 0",            (String) value);      } catch (Throwable t) {        fail("Threw " + t);      }    //测试List索引属性 try {        propertyUtils.setproperty(bean,            "listIndexed(0) " ,            "New value");        value =            propertyUtils.getproperty(bean,                " listIndexed(0)");        assertNotNull("Returned new value 0", value);        assertTrue("Returned String new value 0",            value instanceof String);        assertEquals("Returned correct new value 0", " New value ",            (String) value);      } catch (Throwable t) {        fail("Threw " + t);      } } /** * 测试映射属性 */ public void testSetMappedValues() {      Object value = null;      try {        propertyUtils.setproperty(bean,          

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号