Bonjour
Je recherche un moyen d'héviter de toujours devoir inscrire dans les fichiers de configurations de tomcat les parametres pour le jndi. J'ai donc regarder la doc de tomcat et je suis tomber sur ceci: http://tomcat.apache.org/tomcat-5. [...] howto.html avec la section postgres.
Je me suis donc arreter sur le point 2b
Citation :
2b. Application-specific resource configuration
|
Code :
- InitialContext cxt = new InitialContext();
- if ( cxt == null ) {
- throw new Exception("Uh oh -- no context!" );
- }
- DataSource ds = (DataSource) cxt.lookup( "java:/comp/env/jdbc/postgres" );
- if ( ds == null ) {
- throw new Exception("Data source not found!" );
- }
|
ceci fonctionne mais des qu'on recherche a obtenir une connexion ERROR !!!
Code :
- Connection con = ds.getConnection();
|
Code :
- Cannot create JDBC driver of class '' for connect URL 'null'
|
Message édité par celestin1409 le 20-03-2006 à 18:36:03