Mysql
 sql >> Base de données >  >> RDS >> Mysql

Mappage d'un jeu de résultats JDBC à un objet

Si vous ne souhaitez pas utiliser de fournisseur JPA tel que OpenJPA ou Hibernate, vous pouvez simplement essayer Apache DbUtils.

http://commons.apache.org/proper/commons-dbutils/examples .html

Votre code ressemblera alors à ceci :

QueryRunner run = new QueryRunner(dataSource);

// Use the BeanListHandler implementation to convert all
// ResultSet rows into a List of Person JavaBeans.
ResultSetHandler<List<Person>> h = new BeanListHandler<Person>(Person.class);

// Execute the SQL statement and return the results in a List of
// Person objects generated by the BeanListHandler.
List<Person> persons = run.query("SELECT * FROM Person", h);