-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 7 posts ] 
Author Message
 Post subject: [Configuration] Config par prog. : préciser le datasource
PostPosted: Tue Sep 02, 2008 3:08 am 
Beginner
Beginner

Joined: Fri May 23, 2008 4:37 am
Posts: 25
Hibernate version: 3

Code between sessionFactory.openSession() and session.close(): Sans intérêt

Full stack trace of any exception that occurs:
Quote:
javax.naming.NoInitialContextException: Need to specify class name in environment or system property, or as an applet parameter, or in an application resource file: java.naming.factory.initial
at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:645)
at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:288)
at javax.naming.InitialContext.getURLOrDefaultInitCtx(InitialContext.java:325)
at javax.naming.InitialContext.getNameParser(InitialContext.java:480)
at org.hibernate.util.NamingHelper.bind(NamingHelper.java:52)
at org.hibernate.impl.SessionFactoryObjectFactory.addInstance(SessionFactoryObjectFactory.java:90)
at org.hibernate.impl.SessionFactoryImpl.<init>(SessionFactoryImpl.java:306)
at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1294)
at me.hibernate.HibernateUtil.<init>(HibernateUtil.java:42)
at me.hibernate.NiocHibernateDaoFactory.<init>(NiocHibernateDaoFactory.java:36)
at me.Administrator.preInit(Administrator.java:56)
at fabric.app.Application.startOnEDT(Application.java:416)
at fabric.app.Application.access$0(Application.java:415)
at fabric.app.Application$Handler.run(Application.java:703)
at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209)
at java.awt.EventQueue.dispatchEvent(EventQueue.java:597)
at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:273)
at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:183)
at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:173)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:168)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:160)
at java.awt.EventDispatchThread.run(EventDispatchThread.java:121)



Name and version of the database you are using: PostgreSQL 8.3

The generated SQL (show_sql=true): sans intérêts

Debug level Hibernate log excerpt: sans intérêts

____________________________________________________________

Bonjour,

Nous avons une série de DAOS réalisés avec hibernate pour une application Web. Je dois mettre en place une application Swing pour les mêmes tables. Je voudrais donc réutiliser les daos Hibernate pour ne pas tout réecrire.

L'outil que je dois écrire vas recherche dans un fichier ".properties" les paramètres de connexions (serveur, utilisateur et mot de passe).
J'ai écris une classe devant me servir à récupérer la SessionFactory :
Code:
public HibernateUtil(Properties properties) {
      String url = new StringBuilder("jdbc:postgresql://")
         .append(properties.getProperty("db.host"))
         .append(":").append(properties.getProperty("db.port","5432"))
         .append("/").append(properties.getProperty("db.name","DEFAULT"))
         .toString();
         
      Configuration cfg = new Configuration()
         .configure("./hibernate.cfg.xml")
         // Hard coded properties
         .setProperty("hibernate.connection.driver_class", "org.postgresql.Driver")
         .setProperty("hibernate.dialect", "org.hibernate.dialect.PostgreSQLDialect")
         .setProperty("hibernate.connection.pool_size", "1")
         // Dynamic properties
         .setProperty("hibernate.connection.url", url)
         .setProperty("hibernate.connection.username", properties.getProperty("db.user"))
         .setProperty("hibernate.connection.password", properties.getProperty("db.password"))
         // Mappings
         .addResource("me/app/hibernate/mappings/menu.hbm.xml")
         .addResource("me/app/hibernate/mappings/user.hbm.xml")
         .addResource("me/app/hibernate/mappings/nationality.hbm.xml")
         .addResource("me/app/hibernate/mappings/role.hbm.xml")
         // Configuration
         .configure();      
      try {
         sessionFactory = cfg.buildSessionFactory();
      } catch (Throwable e) {
         throw new ExceptionInInitializerError(e);
      }
   }


Mais ce code me lance cette exception (sur la ligne "sessionFactory = cfg.buildSessionFactory()"):
Quote:
javax.naming.NoInitialContextException: Need to specify class name in environment or system property, or as an applet parameter, or in an application resource file: java.naming.factory.initial
(Voir toute la trace au début de ce post)


Je sais bien qu'il faut lui donner un datasource mais je suis dans une application Swing (pas de serveur d'application, pas de JNDI) et sans fichire hibernate.cfg


L'un d'entre vous sais t'il comment renseigner le datasource par programmation ?


Merci



[/quote]


Top
 Profile  
 
 Post subject:
PostPosted: Tue Sep 02, 2008 3:32 am 
Beginner
Beginner

Joined: Thu Nov 15, 2007 11:27 am
Posts: 34
J'utilise ceci pour mes tests junit de composant hibernate. Comme tu peux le voir, tu peux utiliser un 'new File("./conf/hibernate.cfg.xml")' pour passer le fichier de conf.
Code:
   /**
    * Retrieves the hibernate session, create it if it has not been initialized
    * yet.
    *
    * @return An hibernate session.
    */
   protected Session getSession() {
      if (null == session) {
         try {
            Configuration cfg = new org.hibernate.cfg.Configuration();
            Properties hibProp = new Properties();
            Class.forName(DB_DRIVER);
            Connection connection = DriverManager.getConnection(DB_URL, DB_USERNAME, DB_PASSWORD);

            hibProp.load(new FileInputStream(new File("./conf/hibernate.properties")));
            cfg = cfg.addProperties(hibProp);
            SessionFactory sf = cfg.configure(new File("./conf/hibernate.cfg.xml")).buildSessionFactory();
            session = sf.openSession(connection);
         } catch (ClassNotFoundException cnfe) {
            Assert.fail("Can not find data base driver.");
         } catch (IOException ioe) {
            Assert.fail("File hibernate.properties not found.");
         } catch (SQLException sqle) {
            Assert.fail("Connection to data base failed.");
         }
      }
      if (!session.isOpen()) {
         try {
            session = session.getSessionFactory().openSession(DriverManager.getConnection(DB_URL, DB_USERNAME, DB_PASSWORD));
         } catch (SQLException sqle) {
            Assert.fail("Connection to data base failed.");
         }
      }
      return session;
   }


Top
 Profile  
 
 Post subject:
PostPosted: Tue Sep 02, 2008 4:11 am 
Beginner
Beginner

Joined: Fri May 23, 2008 4:37 am
Posts: 25
Bonjour,

Oui je sais que l'on peux utiliser un File. Dans mon cas j'ai chosi l'option de configuration par programmation pour préciser les propriétés "URL, DB, User et Password" tirées d'un fichier properties propre à mon application (default.properties) qui contient, entre autres les clefs suivantes :
Quote:
sgbd.host.url
sgbd.user.name
sgbd.user.password
sgbd.db.name


Mais je vois que tu utilise également un fichier properties (./conf/hibernate.properties) je n'ai pas trouvé dinformations à ce sujet, comment celà fonctionne t'il ? Pourrais-je utiliser mon fichier ?

Merci


Top
 Profile  
 
 Post subject:
PostPosted: Tue Sep 02, 2008 5:08 am 
Beginner
Beginner

Joined: Thu Nov 15, 2007 11:27 am
Posts: 34
Le fichier hibernate.properties contient les proprièté hibernate, pour définir le dialect, ce qui remplacerait ton ".setProperty("hibernate.dialect", "org.hibernate.dialect.PostgreSQLDialect")".

Le fichier 'hibernate.cfg.xml' utilisé pour la configuration est la déclaration des fichiers de mapping a utiliser, ce que tu utilises en plus de tes "addResource".

Pour ce qui t'intéresse:
sgbd.host.url
sgbd.user.name
sgbd.user.password
sgbd.db.name

j'utilise ici des constantes (DB_DRIVER, DB_URL, DB_USERNAME, DB_PASSWORD), pour créer la connexion a part, mais tu peux les mettre dans le hibernate.properties (a tester):
hibernate.connection.username=username
hibernate.connection.password=pwd
...

Apres teste, ca fonctionne

Code:
Properties hibProp = new Properties();
hibProp.load(new FileInputStream(new File("./conf/hibernate.properties"))); //Tu peux y mettre ton fichier de properties
cfg = cfg.addProperties(hibProp);
SessionFactory sf = cfg.configure(new File("./conf/hibernate.cfg.xml")).buildSessionFactory();


et pour choper la session: session = sf.openSession();

et dans le fichier de properties:
Code:
hibernate.dialect=org.monpackage.MaClasseDeDialect
hibernate.connection.url=jdbc:monurl://server:port/instance
hibernate.connection.username=user
hibernate.connection.password=password


Top
 Profile  
 
 Post subject:
PostPosted: Tue Sep 02, 2008 5:34 am 
Beginner
Beginner

Joined: Thu Nov 15, 2007 11:27 am
Posts: 34
En fait, je pense que ton probleme vient du driver que tu n'as pas chargé:
Class.forName(DB_DRIVER); dans mon code.

Tu peux aussi le mettre dans le fichier de properties. Va voir http://viewvc.jboss.org/cgi-bin/viewvc. ... iew=markup un exemple de hibernate.properties pour un peu tout.

Le reste de ton code me semble correcte par rapport a ce que tu veux faire.


Top
 Profile  
 
 Post subject:
PostPosted: Tue Sep 02, 2008 5:54 am 
Beginner
Beginner

Joined: Fri May 23, 2008 4:37 am
Posts: 25
Bon, voilà, il y avait, entre autres, un driver non chargé. J'en suis au stade suivant :

- 1° Dans mon application Swing, je récupère mon fichier properties et crée un objet Properties pour hibernate sur base de mes clefs.
- 2° J'instancie mon objet HibernateUtil en lui passant l'objet Properties
- 3° L'objet HibernateUtil crée un Configuration sur base des Properties que je lui passe et du fichier 'hibernate.cfg.xml'.


Tou semble bien se passer, j'ai des logs "correctes" :
Quote:
2008-09-02 11:47:15,843 INFO [org.hibernate.cfg.Environment] - Hibernate 3.2.5
2008-09-02 11:47:15,843 INFO [org.hibernate.cfg.Environment] - hibernate.properties not found
2008-09-02 11:47:15,843 INFO [org.hibernate.cfg.Environment] - Bytecode provider name : cglib
2008-09-02 11:47:15,875 INFO [org.hibernate.cfg.Environment] - using JDK 1.4 java.sql.Timestamp handling
2008-09-02 11:47:15,921 INFO [org.hibernate.cfg.Configuration] - configuring from file: hibernate.cfg.xml
2008-09-02 11:47:16,000 INFO [org.hibernate.cfg.Configuration] - Configured SessionFactory: null
2008-09-02 11:47:16,000 INFO [org.hibernate.cfg.Configuration] - Reading mappings from resource : xx/yy/mappings/nationality.hbm.xml
2008-09-02 11:47:16,140 INFO [org.hibernate.cfg.Configuration] - configuring from resource: /hibernate.cfg.xml
2008-09-02 11:47:16,140 INFO [org.hibernate.cfg.Configuration] - Configuration resource: /hibernate.cfg.xml
2008-09-02 11:47:16,156 INFO [org.hibernate.cfg.Configuration] - Configured SessionFactory: SessionFactory
2008-09-02 11:47:16,203 INFO [org.hibernate.connection.DriverManagerConnectionProvider] - Using Hibernate built-in connection pool (not for production use!)
2008-09-02 11:47:16,203 INFO [org.hibernate.connection.DriverManagerConnectionProvider] - Hibernate connection pool size: 1
2008-09-02 11:47:16,203 INFO [org.hibernate.connection.DriverManagerConnectionProvider] - autocommit mode: false
2008-09-02 11:47:16,203 INFO [org.hibernate.connection.DriverManagerConnectionProvider] - using driver: org.postgresql.Driver at URL: jdbc:postgresql://localhost:5432/MYDB
2008-09-02 11:47:16,203 INFO [org.hibernate.connection.DriverManagerConnectionProvider] - connection properties: {user=MYUSER, password=MYPASSWORD}
2008-09-02 11:47:16,328 INFO [org.hibernate.cfg.SettingsFactory] - RDBMS: PostgreSQL, version: 8.2.7
2008-09-02 11:47:16,328 INFO [org.hibernate.cfg.SettingsFactory] - JDBC driver: PostgreSQL Native Driver, version: PostgreSQL 8.2 JDBC3 with SSL (build 505)
..


Mais, esnuite je reçois l'exception suivante :
Quote:
2008-09-02 11:47:16,625 DEBUG [org.hibernate.impl.SessionFactoryObjectFactory] - initializing class SessionFactoryObjectFactory
2008-09-02 11:47:16,625 DEBUG [org.hibernate.impl.SessionFactoryObjectFactory] - registered: 2c90858a1c22757a011c22757b110000 (SessionFactory)
2008-09-02 11:47:16,625 INFO [org.hibernate.impl.SessionFactoryObjectFactory] - Factory name: SessionFactory
2008-09-02 11:47:16,625 INFO [org.hibernate.util.NamingHelper] - JNDI InitialContext properties:{}
2008-09-02 11:47:16,625 DEBUG [org.hibernate.util.NamingHelper] - binding: SessionFactory
2008-09-02 11:47:16,625 WARN [org.hibernate.impl.SessionFactoryObjectFactory] - Could not bind factory to JNDI
javax.naming.NoInitialContextException: Need to specify class name in environment or system property, or as an applet parameter, or in an application resource file: java.naming.factory.initial
at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:645)
at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:288)
at javax.naming.InitialContext.getURLOrDefaultInitCtx(InitialContext.java:325)
at javax.naming.InitialContext.getNameParser(InitialContext.java:480)
at org.hibernate.util.NamingHelper.bind(NamingHelper.java:52)
at org.hibernate.impl.SessionFactoryObjectFactory.addInstance(SessionFactoryObjectFactory.java:90)
at org.hibernate.impl.SessionFactoryImpl.<init>(SessionFactoryImpl.java:306)
at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1294)
at xx.yy.hibernate.HibernateUtil.<init>(HibernateUtil.java:46)


Voici mon code de HibernateUtil :
Code:
   public HibernateUtil(Properties properties, File hibernateCfg) {         
      Configuration cfg = new Configuration()
         .setProperties(properties)
         .configure(hibernateCfg)
         // Mappings
         .addResource("xx/yy/mappings/nationality.hbm.xml")
         .configure();      
      try {
         sessionFactory = cfg.buildSessionFactory();
      } catch (Throwable e) {
         throw new ExceptionInInitializerError(e);
      }
   }


Je ne comprend pas ce qui lui manque, mon fichier de configuration d'hiberante est le suivant :

Quote:
<hibernate-configuration>
<session-factory>

<!--
From administaror properties file (user editable properties)
<property name="hibernate.connection.url"></property>
<property name="hibernate.connection.username"></property>
<property name="hibernate.connection.password"></property>
-->

<property name="hibernate.connection.driver_class">org.postgresql.Driver</property>
<property name="hibernate.connection.pool_size">1</property>
<property name="show_sql">true</property>
<property name="dialect">org.hibernate.dialect.PostgreSQLDialect</property>
<property name="hibernate.hbm2ddl.auto">validate</property>

</session-factory>
</hibernate-configuration>


Top
 Profile  
 
 Post subject: [RESOLU]
PostPosted: Tue Sep 02, 2008 6:09 am 
Beginner
Beginner

Joined: Fri May 23, 2008 4:37 am
Posts: 25
Voilà,

Mon problème était que je fesais plusieurs fois appel à .configure() et que le dernier de ces appel se fesais sur une configuration vide (qui évidemment ne marche pas très bien).

Mon HibernateUtil ressemble maintenant à ceci :
Code:
public HibernateUtil(Properties properties) {
      this(properties, new File("./hibernate.cfg.xml"));
   }
   
   public HibernateUtil(Properties properties, File hibernateCfg) {         
      Configuration cfg = new Configuration()
         // Mappings      
         .addResource(...")
   
         // Dynamic properties (user editables : url, username, password)
         .setProperties(properties)
   
         // Core properties (from hibernate.cfg.xml)
         .configure(hibernateCfg);
      try {
         sessionFactory = cfg.buildSessionFactory();
      } catch (Throwable e) {
         throw new ExceptionInInitializerError(e);
      }
   }
   
    public SessionFactory getSessionFactory() {
        return sessionFactory;
    }


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 7 posts ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.