I'm manually creating a HashMap and then calling BeanUtils.populate(bean, map) to copy 
the map values to the target bean, but it's failing with a NoClassDefFoundError. Any 
idea what I might be doing wrong? (Although not all variables are String, the type of 
each map value matches the type of the like-named bean variable.)

jim

[create HashMap manually...]

            AddSelectDetailBean bean = new AddSelectDetailBean();
            try {
                BeanUtils.populate(bean, row);
                list.add(bean);
            } catch (Exception e) {
                System.out.println(e.getMessage());
                e.printStackTrace();
                list = null;
            }

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to