i have existing project with datasource setup with spring.xml .
the xml look like below
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
<property name="url"
value="jdbc:oracle:thin:@xxx:1511:xxx"/>
<property name="driverClassName"
value="oracle.jdbc.OracleDriver"/>
<property name="username" value="xxx"/>
<property name="password" value="xxx"/>
</bean>
inside eclipse, i click new ->other->hibernate-> hibernate console configuration. how to use hibernate tool inside eclipse to connect to database using setting of spring.xml file like above? or is there way to manually enter those setting in hibernate console inside eclipse to connect to database so that i can do reverse engineering on database table?