-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 2 posts ] 
Author Message
 Post subject: probleme de performence
PostPosted: Wed Mar 25, 2009 7:56 pm 
Regular
Regular

Joined: Wed Jan 28, 2009 8:31 pm
Posts: 54
bonjour j ai un probleme de performence pour une requete

Code:
@SuppressWarnings("unchecked")
   public List<InfogenePojo> find(String noGroupe, String noCert) {
      Session session = null;
      List<InfogenePojo> list = null;
      try {

         session = HibernateUtil.getSessionFactory().getCurrentSession();
         session.beginTransaction();
         list = session
               .createQuery(
                     "FROM InfogenePojo inf where inf.id.noCertificat like ? and inf.id.noGroupe = ? order by inf.id.dtEvenement desc")
               .setString(0, noCert + "%").setString(1, noGroupe).list();
         if (list.size() == 0)
            return null;
      } catch (HibernateException e) {
         HibernateUtil.getSessionFactory().getCurrentSession()
               .getTransaction().rollback();
         Log.setCodeRetour(8);
         throw new ServiceException(e.getMessage(), e);

      } finally {

         HibernateUtil.getSessionFactory().close();

      }
      return list;
   }

et mon fichier hbm
Code:



<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC
   "-//Hibernate/Hibernate Mapping DTD//EN"
   "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd" >

<hibernate-mapping package="pojo">
   <class
      name="InfogenePojo"
      table="INFOGENE"
      lazy="false"
   >
   
   
   
   
    <composite-id name="id" class="ca.canassistance.pojo.InfogeneId">

        <key-property name="noGroupe" column="IG_NO_GROUPE" type="string" length="6"/>
        <key-property name="noCertificat" column="IG_NO_CERTIFICAT" type="string"  length="10"/>
        <key-property name="dtEvenement" column="IG_DT_EVENEMENT" type="integer" length="8"/>
        <key-property name="noDossier" column="IG_NO_DOSSIER" type="string" length="6"/>
      </composite-id>

      <property
         name="doubleAss"
         column="IG_ID_DOUBLE_ASS"
         type="string"
         not-null="false"
         length="1"
         lazy="false"
      />
      
      <property
         name="groupeClient"
         column="IG_GROUPE_CLIENT"
         type="string"
         not-null="false"
         length="8"
         lazy="false"
      />
      <property
         name="noCertificatSam"
         column="IG_NO_CERTIFICAT_SAM"
         type="string"
         not-null="false"
         length="20"
         lazy="false"
      />
      
      
      <property
         name="idUser"
         column="IG_ID_USER"
         type="string"
         not-null="false"
         length="4"
         lazy="false"
      />
      <property
         name="dtModif"
         column="IG_DT_MODIF"
         type="integer"
         not-null="false"
         length="8"
         lazy="false"
      />
      <property
         name="idAccident"
         column="IG_ID_ACCIDENT"
         type="string"
         not-null="false"
         length="1"
         lazy="false"
      />


</class>
</hibernate-mapping>



j 'execute un batch 325 ligne.
Le tout prend plus de 5 min.Ce qui est beaucoup trop long.
Est ce qu il y a une solution merci


Top
 Profile  
 
 Post subject:
PostPosted: Fri Mar 27, 2009 10:51 am 
Regular
Regular

Joined: Wed Jan 28, 2009 8:31 pm
Posts: 54
dsl mauvaise diagnostic
donc hibernate is the best


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 2 posts ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.