I just downloaded 2.0.3
I did tar -zxvf
Idid ant; it made happy noises
I did chmod +x demo.sh
It made unhappy noises (see below)
Suggestions?
Les
[root@frodo2 hibernate-2.0.3]# ./demo.sh
Nov 8, 2003 6:26:54 PM net.sf.hibernate.cfg.Environment <clinit>
INFO: Hibernate 2.0.3
Nov 8, 2003 6:26:54 PM net.sf.hibernate.cfg.Environment <clinit>
INFO: loaded properties from resource hibernate.properties: {hibernate.connection.driver_class=org.hsqldb.jdbcDriver, hibernate.cglib.use_reflection_optimizer=true, hibernate.dialect=net.sf.hibernate.dialect.HSQLDialect, hibernate.jdbc.use_streams_for_binary=true, hibernate.jdbc.batch_size=0, hibernate.query.substitutions=true 1, false 0, yes 'Y', no 'N', hibernate.query.imports=net.sf.hibernate.test, net.sf.hibernate.eg, hibernate.proxool.pool_alias=pool1, hibernate.connection.username=sa, hibernate.connection.url=jdbc:hsqldb:test, hibernate.show_sql=false, hibernate.connection.password=, hibernate.statement_cache.size=25, hibernate.connection.pool_size=1}
Nov 8, 2003 6:26:54 PM net.sf.hibernate.cfg.Environment <clinit>
INFO: using java.io streams to persist binary types
Nov 8, 2003 6:26:54 PM net.sf.hibernate.cfg.Environment <clinit>
INFO: using CGLIB reflection optimizer
Nov 8, 2003 6:26:54 PM net.sf.hibernate.cfg.Environment <clinit>
INFO: JVM proxy support: true
Nov 8, 2003 6:26:54 PM net.sf.hibernate.cfg.Configuration addClass
INFO: Mapping resource: net/sf/hibernate/eg/Vertex.hbm.xml
Nov 8, 2003 6:26:55 PM net.sf.hibernate.cfg.Binder bindRootClass
INFO: Mapping class: net.sf.hibernate.eg.Vertex -> vertex
Nov 8, 2003 6:26:56 PM net.sf.hibernate.cfg.Binder bindSubclass
INFO: Mapping subclass: net.sf.hibernate.eg.Source -> vertex
Nov 8, 2003 6:26:56 PM net.sf.hibernate.cfg.Configuration addClass
INFO: Mapping resource: net/sf/hibernate/eg/Edge.hbm.xml
Nov 8, 2003 6:26:56 PM net.sf.hibernate.cfg.Binder bindRootClass
INFO: Mapping class: net.sf.hibernate.eg.Edge -> edge
Nov 8, 2003 6:26:56 PM net.sf.hibernate.cfg.Configuration secondPassCompile
INFO: processing one-to-many association mappings
Nov 8, 2003 6:26:56 PM net.sf.hibernate.cfg.Binder bindCollectionSecondPass
INFO: Mapping collection: net.sf.hibernate.eg.Vertex.incoming -> edge
Nov 8, 2003 6:26:56 PM net.sf.hibernate.cfg.Binder bindCollectionSecondPass
INFO: Mapping collection: net.sf.hibernate.eg.Vertex.outgoing -> edge
Nov 8, 2003 6:26:56 PM net.sf.hibernate.cfg.Configuration secondPassCompile
INFO: processing foreign key constraints
Exception in thread "main" java.lang.NoClassDefFoundError: net/sf/cglib/KeyFactory
at net.sf.hibernate.impl.SessionFactoryImpl.<clinit>(SessionFactoryImpl.java:297)
at net.sf.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:627)
at net.sf.hibernate.eg.NetworkDemo.main(NetworkDemo.java:37)
[root@frodo2 hibernate-2.0.3]#
|