-->
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.  [ 2 posts ] 
Author Message
 Post subject: Configure hibernate.dialect in JNDI
PostPosted: Thu Mar 16, 2006 11:50 am 
Newbie

Joined: Thu Mar 16, 2006 11:38 am
Posts: 2
Hi,
I'm (succesfully) using JNDI to configure my datasource. At the moment I'm using tomcat with a MySQL database, but I will be deploying my application to WSAS with an Oracle database.
Is it possibe to configure the hibernate.dialect property in JNDI too? This would enable me to deliver the application as one EAR without having to edit the hibernate.cfg.xml file after deployment.

Also, I'm not sure how to configure a simple java.lang.String in Tomcat's server.xml file as a JNDI resource, but that is only a minor problem.

Of cource I could also use JNDI configured properties to programmatically configure hibernate, but when a simpeler solution is possible, I'd rather go for that.

Thanks,
Matthijs Wensveen


Top
 Profile  
 
 Post subject:
PostPosted: Fri Mar 17, 2006 12:42 pm 
Newbie

Joined: Thu Mar 16, 2006 11:38 am
Posts: 2
The solution I've come up is still programmatical but practical enough for my purposes.

I use a HibernateUtil class, as I suspect most people do, to get a Session. In the static initializer I've put this code:
Code:
private static final String JNDI_HIBERNATEDIALECT = "props/HibernateDialect";

static {
    String dialect = null;
    try {
        Context ctx = (Context)new InitialContext().lookup("java:/comp/env");
        dialect = (String)ctx.lookup(JNDI_HIBERNATEDIALECT);
    } catch (NamingException e) {
        log.warn(JNDI_HIBERNATEDIALECT + " not found in JNDI, not configuring hibernate.dialect", e);
    }

    try {
        // Create the SessionFactory
        Configuration cfg = new Configuration().configure();
        if(dialect != null) {
            cfg.setProperty("hibernate.dialect", dialect);
        }
       
        sessionFactory = cfg.buildSessionFactory();

    } catch (Throwable ex) {
        log.error("Initial SessionFactory creation failed.", ex);
        throw new ExceptionInInitializerError(ex);
    }
}


Now you can configure the "props/HibernateDialect" in your J2EE container. In tomcat you can do this by putting:
Code:
<Environment name="props/HibernateDialect" type="java.lang.String" value="net.sf.hibernate.dialect.MySQLDialect" />

inside the Context configuration in server.xml (or context.xml).

Tomcat does not require you to add a resource-ref in your web.xml, but most J2EE containers do. I think it is a good practice to do so. web.xml:
Code:
<resource-env-ref>
    <description>Hibernate Dialect</description>
    <resource-env-ref-name>
        props/HibernateDialect
    </resource-env-ref-name>
    <resource-env-ref-type>
        java.lang.String
    </resource-env-ref-type>
</resource-env-ref>


Now, how do I give myself some credits? :D


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 2 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.