Hi,

you should ask databinder-related questions in its forum at
http://databinder.net/forum/viewforum.php?f=1&st=0&sk=t&sd=d&start=0.

As to your questions, are you not using maven?  If not, you could
still have a look at the Maven pom.xml file of the baseball project to
figure out the dependencies, but you have to follow the transitive
dependencies.

Thomas


On Thu, Apr 10, 2008 at 3:37 PM, tbt <[EMAIL PROTECTED]> wrote:
>
>  Hi
>
>  Can anyone tell me the list of jar files that are needed to run databinder.
>  I am having trouble running the baseball example.
>
>  Thanks
>  tbt
>
>
>  adrienleroy wrote:
>  >
>  > you can take a look at the databinder project : http://databinder.net/
>  >
>  >
>  > tbt wrote:
>  >>
>  >> Hi
>  >>
>  >> I'm using a static block to save resources so that hibernate does not
>  >> have to initialize a session each time a transaction needs to be done.
>  >>
>  >> ....................................................................
>  >>
>  >>         static SessionFactory sessionFactory;
>  >>
>  >>      static
>  >>      {
>  >>              try
>  >>              {
>  >>                      Configuration hibernateConfig  = new Configuration();
>  >>                      URL cfg = 
> HibernateSession.class.getResource("hibernate.cfg.xml");
>  >>                      sessionFactory = 
> hibernateConfig.configure(cfg).buildSessionFactory();
>  >>              }
>  >>              catch (Exception e)
>  >>              {
>  >>                      e.printStackTrace();
>  >>              }
>  >>      }
>  >>
>  >>
>  >>         public Session getHibernateSession()
>  >>      {
>  >>              return sessionFactory.openSession();
>  >>      }
>  >>
>  >> 
> ...........................................................................
>  >>
>  >> Is this method a correct way to integrate hibernate with wicket and also
>  >> saving resources at the same time. (If I create an instance of a
>  >> SessionFactory, the application runs very slowly)
>  >>
>  >> Thanks
>  >> tbt
>  >>
>  >
>  >
>
>  --
>  View this message in context: 
> http://www.nabble.com/Hibernate-with-wicket-tp16607352p16608597.html
>  Sent from the Wicket - User mailing list archive at Nabble.com.
>
>
>  ---------------------------------------------------------------------
>  To unsubscribe, e-mail: [EMAIL PROTECTED]
>  For additional commands, e-mail: [EMAIL PROTECTED]
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to