org.jasypt.hibernate4.connectionprovider
Class EncryptedPasswordC3P0ConnectionProvider

Object
  extended by org.hibernate.service.jdbc.connections.internal.C3P0ConnectionProvider
      extended by org.jasypt.hibernate4.connectionprovider.EncryptedPasswordC3P0ConnectionProvider
All Implemented Interfaces:
java.io.Serializable, org.hibernate.service.jdbc.connections.spi.ConnectionProvider, org.hibernate.service.Service, org.hibernate.service.spi.Configurable, org.hibernate.service.spi.Stoppable, org.hibernate.service.spi.Wrapped

public final class EncryptedPasswordC3P0ConnectionProvider
extends org.hibernate.service.jdbc.connections.internal.C3P0ConnectionProvider

Extension of C3P0ConnectionProvider that allows the user to write the datasource configuration parameters in an encrypted manner in the hibernate.cfg.xml or hibernate.properties file

The encryptable parameters are:

The name of the password encryptor (decryptor, in fact) will be set in property hibernate.connection.encryptor_registered_name. Its value must be the name of a PBEStringEncryptor object previously registered within HibernatePBEEncryptorRegistry.

An example hibernate.cfg.xml file:

  <hibernate-configuration>

    <session-factory>

      
      <property name="connection.provider_class">org.jasypt.hibernate.connectionprovider.EncryptedPasswordC3P0ConnectionProvider</property>
      <property name="connection.encryptor_registered_name">stringEncryptor</property>
      <property name="connection.driver_class">org.postgresql.Driver</property>
      <property name="connection.url">jdbc:postgresql://localhost/mydatabase</property>
      <property name="connection.username">myuser</property>
      <property name="connection.password">ENC(T6DAe34NasW==)</property>
      <property name="c3p0.min_size">5</property>
      <property name="c3p0.max_size">20</property>
      <property name="c3p0.timeout">1800</property>
      <property name="c3p0.max_statements">50</property>
      ...
      
    </session-factory>
    
    ...
    
  </hibernate-configuration>
 

Since:
1.9.0
Author:
Daniel Fernández
See Also:
Serialized Form

Constructor Summary
EncryptedPasswordC3P0ConnectionProvider()
           
 
Method Summary
 void configure(java.util.Properties props)
           
 
Methods inherited from class org.hibernate.service.jdbc.connections.internal.C3P0ConnectionProvider
close, closeConnection, configure, getConnection, isUnwrappableAs, stop, supportsAggressiveRelease, unwrap
 
Methods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

EncryptedPasswordC3P0ConnectionProvider

public EncryptedPasswordC3P0ConnectionProvider()
Method Detail

configure

public void configure(java.util.Properties props)


Copyright © 2014 The JASYPT team. All Rights Reserved.