Ciao,ho cercato di realizzare un semplice progetto hibernate ho creato una classe Product con i metodi set e get e poi la relativa classe hbm,in seguito file cfg che è il seguente

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<session-factory name="">
<!-- Related to the connection START -->
<property name="connection.driver_class">oracle.jdbc.driver. OracleDriver</property>
<property name="connection.url">jdbcracle:thin:@localhost:1521:xe</property>
<property name="connection.user">SYSTEM</property>
<property name="connection.password">puffo</property>
<!-- Related to the connection END
Related to hibernate properties START -->
<property name="show_sql">true</property>
<property name="dialet">org.hibernate.dialect.OracleDialect</property>

<property name="hbm2ddl.auto">update</property>
<mapping resource="it/Product.hbm.xml"/>





<!-- Related to hibernate properties END
Related to mapping START
Related to the mapping END -->
</session-factory>

PRIMA DOMANDA DOVE TROVO IL RISULTATO DEL INSERIMENTO???PERCHE HO SCARICATO ORACLE ENTERPRISE 11G E SE AVVIO L'APP E PROVO A NAVIGARE NEL TOOL GRAFICO NON LO VEDO?DEVO USARE RIGA DI COMANDO??PERCHE TOOL GRAFICO USA PORTA 8080 MA NON SO DITEMI COME FATE VOI????



e il file finale
mport it.Product;


import org.hibernate.*;
import org.hibernate.cfg.*;
import org.hibernate.engine.spi.SessionFactoryImplementor ;
public class ClientForSave {

public static void main(String[] args)
{

Configuration cfg = new Configuration();
cfg.configure("Util/hibernate.cfg.xml");

SessionFactory factory = cfg.buildSessionFactory();
Session session = factory.openSession();
SessionFactoryImplementor sfi = (SessionFactoryImplementor)factory;
String name = sfi.getSettings().getDefaultSchemaName();
System.out.println(name);
Product p=new Product();

p.setProductId(105);
p.setProName("iPhone");
p.setPrice(2510);

Transaction tx = session.beginTransaction();
session.save(p);
System.out.println("Object saved successfully.....!!");
tx.commit();
session.close();
factory.close();
}

}