感谢大家对IT十八掌大数据的支持,今天的作业如下:
1.属性赋值
-------------
1.Man{50+ }
Man man = new Man();
man.setXxx1(...);
man.setXxx2(...);
...
50
Man copy = new Man();
copy = man ;
copy.setXxx1(man.getXxx1());
copy.setXxx1(man.getXxx1());
copy.setXxx1(man.getXxx1());
copy.setXxx1(man.getXxx1());
2.利用jdbc结合反射,完成查询处理,返回集合。
动态
select id,name,age,xx from ... ;
Metadata
rs.get()
原文地址:http://it18zhang.blog.51cto.com/10771539/1758807