This movie shows some basics about generating beans and DAO (Data Access Object)* from database. To achieve this in this sample we are using JBoss Tools which have Hibernate reverse engineering. That's all for now. Enjoy the movie!
The Java Data Access Object (Java DAO) is an important component in business applications. Business applications almost always need access to data from relational or object databases and the Java platform offers many techniques for accessing this data. The oldest and most mature technique is to use the Java Database Connectivity (JDBC) API, which provides the capability to execute SQL queries against a database and then fetch the results, one column at a time. Although this API provides everything a developer needs to access data and to persist application state, it is a cumbersome API to develop against - which makes a Java DAO code generator particularly useful.