I create a service class which contain the following method
selectAll() return Obj Array
selectOne(); return Obj Array
insert(Obj); return int
delete(); return int
update(); return int
I want to make this class generic as Controller can pass any object while invoking the method., without the reality that properties varies from one beans to another.