|
|
|
|
lucky82, le samedi 10 mai 2008 à 21:00:08Configuration: Windows XP Internet Explorer 7.0
bonjour, assure toi que tu as JDK et JRE
|
j'essaye de chercher.. parceque ces messages j'ai jamais rencontré!
|
bjr encore une fois,
boon, j'avais un Compte.hbm du genre: <?xml version="1.0"?> <!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD//EN" "http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd" > <hibernate-mapping package="com.minosis.hibernate"> <class name="Compte" table="COMPTE"> <property column="LOGIN_COMPTE" length="20" name="LoginCompte" not-null="false" type="string" /> <property column="ID_COMPTE" length="6" name="IdCompte" not-null="false" type="integer" /> <property column="PROFIL_COMPTE" length="20" name="ProfilCompte" not-null="false" type="string" /> <property column="PASSWORD_COMPTE" length="10" name="PasswordCompte" not-null="false" type="string" /> </class> </hibernate-mapping> je l'ai corrigé de cette facon: <?xml version="1.0"?> <!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD//EN" "http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd" > <hibernate-mapping> <class name="com.houda.Compte" table="COMPTE"> <id name="IdCompte" type="integer"> <column name="ID_COMPTE" length="6"/> <generator class="increment"/> </id> <property name="LoginCompte" type="string"> <column name="LOGIN_COMPTE" length="20" not-null="false"/> </property> <property name="ProfilCompte" type="string"> <column name="PROFIL_COMPTE" length="20" not-null="false"/> </property> <property name="PasswordCompte" type="string"> <column name="PASSWORD_COMPTE" length="10" not-null="false"/> </property> </class> </hibernate-mapping> mé j'ai encore des erreurs: 0 [main] INFO net.sf.hibernate.cfg.Environment - Hibernate 2.1.8 0 [main] INFO net.sf.hibernate.cfg.Environment - hibernate.properties not found 0 [main] INFO net.sf.hibernate.cfg.Environment - using CGLIB reflection optimizer 0 [main] INFO net.sf.hibernate.cfg.Environment - using JDK 1.4 java.sql.Timestamp handling 0 [main] INFO net.sf.hibernate.cfg.Configuration - configuring from resource: /hibernate.cfg.xml 0 [main] INFO net.sf.hibernate.cfg.Configuration - Configuration resource: /hibernate.cfg.xml 78 [main] DEBUG net.sf.hibernate.util.DTDEntityResolver - trying to locate http://hibernate.sourceforge.net/hibernate-configuration-2.0.dtd in classpath under net/sf/hibernate/ 78 [main] DEBUG net.sf.hibernate.util.DTDEntityResolver - found http://hibernate.sourceforge.net/hibernate-configuration-2.0.dtd in classpath 110 [main] DEBUG net.sf.hibernate.cfg.Configuration - hibernate.connection.url=jdbc:oracle:thin:@localhost:1521:safaqat 110 [main] DEBUG net.sf.hibernate.cfg.Configuration - hibernate.connection.driver_class=oracle.jdbc.OracleDriver 110 [main] DEBUG net.sf.hibernate.cfg.Configuration - hibernate.connection.username=scott 110 [main] DEBUG net.sf.hibernate.cfg.Configuration - hibernate.connection.password=tiger 110 [main] DEBUG net.sf.hibernate.cfg.Configuration - dialect=net.sf.hibernate.dialect.OracleDialect 110 [main] DEBUG net.sf.hibernate.cfg.Configuration - hibernate.show_sql=false 110 [main] DEBUG net.sf.hibernate.cfg.Configuration - hibernate.use_outer_join=true 110 [main] DEBUG net.sf.hibernate.cfg.Configuration - hibernate.transaction.factory_class=net.sf.hibernate.transaction.JDBCTransactionFactory 110 [main] DEBUG net.sf.hibernate.cfg.Configuration - null<-org.dom4j.tree.DefaultAttribute@89cf1e [Attribute: name resource value "Compte.hbm"] 110 [main] INFO net.sf.hibernate.cfg.Configuration - Mapping resource: Compte.hbm 110 [main] DEBUG net.sf.hibernate.util.DTDEntityResolver - trying to locate http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath under net/sf/hibernate/ 110 [main] DEBUG net.sf.hibernate.util.DTDEntityResolver - found http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd in classpath 172 [main] INFO net.sf.hibernate.cfg.Binder - Mapping class: com.houda.Compte -> COMPTE 219 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: IdCompte -> ID_COMPTE, type: integer 219 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: LoginCompte -> LOGIN_COMPTE, type: string 219 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: ProfilCompte -> PROFIL_COMPTE, type: string 219 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: PasswordCompte -> PASSWORD_COMPTE, type: string 219 [main] INFO net.sf.hibernate.cfg.Configuration - Configured SessionFactory: null ....... ... 219 [main] INFO net.sf.hibernate.cfg.Configuration - processing one-to-many association mappings 219 [main] INFO net.sf.hibernate.cfg.Configuration - processing one-to-one association property references 219 [main] INFO net.sf.hibernate.cfg.Configuration - processing foreign key constraints 235 [main] INFO net.sf.hibernate.dialect.Dialect - Using dialect: net.sf.hibernate.dialect.OracleDialect 250 [main] DEBUG net.sf.hibernate.exception.SQLExceptionConverterFactory - Using dialect defined converter 250 [main] INFO net.sf.hibernate.cfg.SettingsFactory - Use outer join fetching: true 250 [main] INFO net.sf.hibernate.connection.DriverManagerConnectionProvider - Using Hibernate built-in connection pool (not for production use!) 250 [main] INFO net.sf.hibernate.connection.DriverManagerConnectionProvider - Hibernate connection pool size: 20 266 [main] INFO net.sf.hibernate.connection.DriverManagerConnectionProvider - using driver: oracle.jdbc.OracleDriver at URL: jdbc:oracle:thin:@localhost:1521:safaqat 266 [main] INFO net.sf.hibernate.connection.DriverManagerConnectionProvider - connection properties: {user=scott, password=tiger} 266 [main] INFO net.sf.hibernate.transaction.TransactionFactoryFactory - Transaction strategy: net.sf.hibernate.transaction.JDBCTransactionFactory 266 [main] INFO net.sf.hibernate.transaction.TransactionManagerLookupFactory - No TransactionManagerLookup configured (in JTA environment, use of process level read-write cache is not recommended) 266 [main] DEBUG net.sf.hibernate.connection.DriverManagerConnectionProvider - total checked-out connections: 0 266 [main] DEBUG net.sf.hibernate.connection.DriverManagerConnectionProvider - opening new JDBC connection 750 [main] DEBUG net.sf.hibernate.connection.DriverManagerConnectionProvider - created connection to: jdbc:oracle:thin:@localhost:1521:safaqat, Isolation Level: 2 766 [main] DEBUG net.sf.hibernate.connection.DriverManagerConnectionProvider - returning connection to pool, pool size: 1 766 [main] INFO net.sf.hibernate.cfg.SettingsFactory - Use scrollable result sets: true 766 [main] INFO net.sf.hibernate.cfg.SettingsFactory - Use JDBC3 getGeneratedKeys(): false 766 [main] INFO net.sf.hibernate.cfg.SettingsFactory - Optimize cache for minimal puts: false 766 [main] INFO net.sf.hibernate.cfg.SettingsFactory - Query language substitutions: {} 766 [main] INFO net.sf.hibernate.cfg.SettingsFactory - cache provider: net.sf.hibernate.cache.EhCacheProvider 766 [main] DEBUG net.sf.hibernate.cfg.SettingsFactory - Wrap result sets enabled? : false 766 [main] INFO net.sf.hibernate.cfg.Configuration - instantiating and configuring caches 766 [main] DEBUG net.sf.ehcache.CacheManager - Creating new CacheManager with default config 766 [main] DEBUG net.sf.ehcache.CacheManager - Configuring ehcache from classpath. 781 [main] WARN net.sf.ehcache.config.ConfigurationFactory - No configuration found. Configuring ehcache from ehcache-failsafe.xml found in the classpath: jar:file:/F:/Modules%20etudies/Master%20QL/2eme%20annee/S4%20---stage/SIS/Developpement/Eclipse%20Workspace/hib/WebContent/WEB-INF/lib/ehcache-1.2.3.jar!/ehcache-failsafe.xml 781 [main] DEBUG net.sf.ehcache.config.ConfigurationFactory - Configuring ehcache from URL: jar:file:/F:/Modules%20etudies/Master%20QL/2eme%20annee/S4%20---stage/SIS/Developpement/Eclipse%20Workspace/hib/WebContent/WEB-INF/lib/ehcache-1.2.3.jar!/ehcache-failsafe.xml 781 [main] DEBUG net.sf.ehcache.config.ConfigurationFactory - Configuring ehcache from InputStream 781 [main] DEBUG net.sf.ehcache.config.DiskStoreConfiguration - Disk Store Path: C:\DOCUME~1\dell\LOCALS~1\Temp\ 797 [main] DEBUG net.sf.ehcache.config.ConfigurationHelper - No CacheManagerEventListenerFactory class specified. Skipping... 797 [main] DEBUG net.sf.ehcache.config.ConfigurationHelper - No CachePeerListenerFactoryConfiguration specified. Not configuring a CacheManagerPeerListener. 797 [main] DEBUG net.sf.ehcache.config.ConfigurationHelper - No CachePeerProviderFactoryConfiguration specified. Not configuring a CacheManagerPeerProvider. 844 [main] DEBUG net.sf.ehcache.config.ConfigurationHelper - No BootstrapCacheLoaderFactory class specified. Skipping... Exception in thread "main" java.lang.NoSuchMethodError: org.objectweb.asm.ClassWriter.<init>(Z)V at net.sf.cglib.core.DebuggingClassWriter.<init>(DebuggingClassWriter.java:47) at net.sf.cglib.core.DefaultGeneratorStrategy.getClassWriter(DefaultGeneratorStrategy.java:30) at net.sf.cglib.core.DefaultGeneratorStrategy.generate(DefaultGeneratorStrategy.java:24) at net.sf.cglib.core.AbstractClassGenerator.create(AbstractClassGenerator.java:215) at net.sf.cglib.core.KeyFactory$Generator.create(KeyFactory.java:145) at net.sf.cglib.core.KeyFactory.create(KeyFactory.java:117) at net.sf.cglib.core.KeyFactory.create(KeyFactory.java:108) at net.sf.cglib.core.KeyFactory.create(KeyFactory.java:104) at net.sf.hibernate.impl.SessionFactoryImpl.<clinit>(SessionFactoryImpl.java:237) at net.sf.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:805) at com.houda.HibernateUtil.<clinit>(HibernateUtil.java:12) at Test.main(Test.java:11)
|
| 22/02 21h56 | Liste des logiciels officiellement supportés par Vista | Windows Vista |
| 21/04 12h07 | Connexion à une base Oracle en php | Oracle |
| 05/02 15h33 | Unable to load dynamic library '/usr/lib/php4/20020429/mysql.so | PHP |
| 09/04 21h50 | Comment avoir "msconfig" sous Windows 2000 | Windows 2000 |
| 15/10 14h56 | [Windows XP] Libérer 20% de la bande passante | Windows XP |
| 11/05 15h28 | Hibernate 3 et eclipse europa | 2 |
| 10/10 11h57 | Installer une base oracle 10g dans xp ou 2003 | 0 |
| 26/04 14h42 | [hibernate][oracle 10g]pb pour enregistrer bl | 2 |
| 26/08 11h33 | Oracle 10g | 2 |
![]() | SuperCopier 2 - SuperCopier est un gestionnaire de copie de fichiers libre pour Windows, proposant des fonctionnalités non couvertes par le... | Catégorie: Gestion de fichiers Licence: Freeware/gratuit |
![]() | PowerArchiver 2001 - Power Archiver est un équivalent gratuit de WinZip avec des fonctionnalités en plus, avec une version en français !! | Catégorie: Compression/Décompression Licence: Freeware/gratuit |
![]() | Foobar 2000 - Foobar2000 est un lecteur audio avancé pour les plateformes Microsoft Windows. Son interface graphique est volontairement... | Catégorie: Lecteurs audio Licence: Freeware/gratuit |
![]() | Visual Basic Express 2005 - Le langage de programmation Visual Basic est historiquement dans les gènes de la société Microsoft. Avec plus de 30.000... | Catégorie: Visual Basic Licence: Freeware/gratuit |
![]() | RueDuCommerce montage Eclipse Gaming | Catégorie: Ordinateur de bureau | |
![]() | Thermalrock Eclipse RH-M040-2AN / | Catégorie: Boîtier PC | |
![]() | RueDuCommerce Eclipse Gaming Intel | Catégorie: Ordinateur de bureau | |
![]() | Toshiba Qosmio G30-10G Core | Catégorie: Ordinateur portable |