java基础第23天_数据库连接池反射
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java基础第23天_数据库连接池反射相关的知识,希望对你有一定的参考价值。
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://10718270.blog.51cto.com/10708270/1793313
以上是关于java基础第23天_数据库连接池反射的主要内容,如果未能解决你的问题,请参考以下文章