Need help with Hibernate? Read this first:
http://www.hibernate.org/ForumMailingli ... AskForHelp
Hi,
I'm using hibernate , I have Two bean named : AnomalieFamille and Site
they have this relation :
* Site One-To-Many AnomalieFamille
* AnomalieFamille Many-to-one Site ,
Hibernate version:3.2
the mapping file :
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-mapping PUBLIC
"-//Hibernate/Hibernate Mapping DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
<hibernate-mapping
>
<class
name="com.webtiss.sita.sgp.model.Site"
table="site"
>
<id
name="id"
column="id"
type="long"
unsaved-value="0"
>
<generator class="native">
<!--
To add non XDoclet generator parameters, create a file named
hibernate-generator-params-Site.xml
containing the additional parameters and place it in your merge dir.
-->
</generator>
</id>
<bag
name="siteOperateurs"
lazy="true"
inverse="true"
cascade="delete"
>
<cache
usage="read-write"
/>
<key
column="id"
>
</key>
<one-to-many
class="com.webtiss.sita.sgp.model.Operateur_Site"
/>
</bag>
<property
name="adresse1"
type="java.lang.String"
update="true"
insert="true"
column="adresse1"
/>
<property
name="adresse2"
type="java.lang.String"
update="true"
insert="true"
column="adresse2"
/>
<many-to-one
name="balance"
class="com.webtiss.sita.sgp.model.Balance"
cascade="none"
outer-join="auto"
update="true"
insert="true"
column="balance_id"
/>
<property
name="codePostale"
type="java.lang.String"
update="true"
insert="true"
column="codepostale"
/>
<property
name="codeSite"
type="java.lang.String"
update="true"
insert="true"
column="codesite"
/>
<property
name="connpesvid2"
type="boolean"
update="true"
insert="true"
column="connpesvid2"
/>
<property
name="imprimante"
type="java.lang.String"
update="true"
insert="true"
column="printer"
/>
<property
name="logobd"
type="java.sql.Blob"
update="true"
insert="true"
column="logobd"
/>
<property
name="logobg"
type="java.sql.Blob"
update="true"
insert="true"
column="logobg"
/>
<property
name="nom"
type="java.lang.String"
update="true"
insert="true"
column="nom"
/>
<property
name="affich_regroup"
type="boolean"
update="true"
insert="true"
column="affich_regroup"
/>
<property
name="siret"
type="java.lang.String"
update="true"
insert="true"
column="siret"
/>
<property
name="telephone"
type="java.lang.String"
update="true"
insert="true"
column="telephone"
/>
<property
name="texte1"
type="java.lang.String"
update="true"
insert="true"
column="texte1"
/>
<property
name="texte2"
type="java.lang.String"
update="true"
insert="true"
column="texte2"
/>
<property
name="texte3"
type="java.lang.String"
update="true"
insert="true"
column="texte3"
/>
<property
name="ville"
type="java.lang.String"
update="true"
insert="true"
column="ville"
/>
<many-to-one
name="entite"
class="com.webtiss.sita.sgp.model.Entite"
cascade="none"
outer-join="auto"
update="true"
insert="true"
column="entite_id"
/>
<property
name="cbValider"
type="boolean"
update="true"
insert="true"
column="cbvalider"
/>
<property
name="affich_poste"
type="boolean"
update="true"
insert="true"
column="affich_poste"
/>
<bag
name="listFamilleAnomalie"
lazy="true"
inverse="true"
cascade="delete"
>
<cache
usage="read-write"
/>
<key
column="id"
>
</key>
<one-to-many
class="com.webtiss.sita.sgp.model.AnomalieFamille"
/>
</bag>
<!--
To add non XDoclet property mappings, create a file named
hibernate-properties-Site.xml
containing the additional properties and place it in your merge dir.
-->
</class>
</hibernate-mapping>
[b]
BEAN AnomalieFamille :
[b]
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-mapping PUBLIC
"-//Hibernate/Hibernate Mapping DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
<hibernate-mapping
>
<class
name="com.webtiss.sita.sgp.model.AnomalieFamille"
table="ano_fam"
>
<cache usage="read-write" />
<id
name="id"
column="id"
type="long"
unsaved-value="0"
>
<generator class="native">
<!--
To add non XDoclet generator parameters, create a file named
hibernate-generator-params-AnomalieFamille.xml
containing the additional parameters and place it in your merge dir.
-->
</generator>
</id>
<property
name="libelle"
type="java.lang.String"
update="true"
insert="true"
column="libelle"
/>
<many-to-one
name="site"
class="com.webtiss.sita.sgp.model.Site"
cascade="none"
outer-join="auto"
update="true"
insert="true"
column="site_id"
/>
<property
name="codeAnomalieFamille"
type="java.lang.String"
update="true"
insert="true"
column="code_ano_fam"
/>
<bag
name="anomalies"
lazy="true"
inverse="true"
cascade="delete"
>
<cache
usage="read-write"
/>
<key
column="id"
>
</key>
<one-to-many
class="com.webtiss.sita.sgp.model.Anomalie"
/>
</bag>
<!--
To add non XDoclet property mappings, create a file named
hibernate-properties-AnomalieFamille.xml
containing the additional properties and place it in your merge dir.
-->
</class>
</hibernate-mapping>
and when I execute the following code :
public void depthSave(AnomalieFamilleCommune ano_f_c) throws InexbeeBusinessException {
try {
LOG.debug("0");
//
AnomalieFamille anofam ;
Site site;
// ajoute de la nouvelle famille dans tous les sites.
List listSites = this.getSiteDAO().getList();
for(int i = 0 ; i < listSites.size() ; i++) {
LOG.debug("1");
//
site = (Site)listSites.get(i);
//
anofam = new AnomalieFamille();
anofam.setCodeAnomalieFamille(ano_f_c.getCodeanofamc());
anofam.setLibelle(ano_f_c.getLibelle());
// construction de la liaison bidirectionelle hibernate
anofam.setSite(site);
//site.getListFamilleAnomalie().add(anofam);
this.getAnomalieFamilleDAO().save(anofam);
//this.getSiteDAO().save(site);
}
} catch (InexbeeDAOException e) {
LOG.error("erreur depth save",e);
//e.printStackTrace();
throw new InexbeeBusinessException(e);
}
}
[
I got this beautiful exception :
[b]2006-11-30 17:14:57,765 [ INFO] org.springframework.core.CollectionFactory:76 - JDK 1.4+ collections available
2006-11-30 17:14:57,843 [ INFO] org.springframework.beans.factory.xml.XmlBeanDefinitionReader:347 - Loading XML bean definitions from file [C:\Documents and Settings\chantit\Mes documents\DEV\eclipse Projects\sita_sgp\src\webapp\WEB-INF\config\business-context.xml]
2006-11-30 17:14:58,046 [ INFO] org.springframework.beans.factory.xml.XmlBeanDefinitionReader:347 - Loading XML bean definitions from file [C:\Documents and Settings\chantit\Mes documents\DEV\eclipse Projects\sita_sgp\src\webapp\WEB-INF\config\dao-context.xml]
2006-11-30 17:14:58,093 [ INFO] org.springframework.beans.factory.xml.XmlBeanDefinitionReader:347 - Loading XML bean definitions from file [C:\Documents and Settings\chantit\Mes documents\DEV\eclipse Projects\sita_sgp\src\webapp\WEB-INF\config\main-context.xml]
2006-11-30 17:14:58,140 [ INFO] org.springframework.context.support.FileSystemXmlApplicationContext:100 - Bean factory for application context [org.springframework.context.support.FileSystemXmlApplicationContext;hashCode=19727353]: org.springframework.beans.factory.support.DefaultListableBeanFactory defining beans [business.operateur,business.entite,business.site,business.operateur_site,business.anomalieFamilleCommune,business.anomalieFamille,business.keyGenerator,business.xlsFileBuilder,transaction.attributes.source,transaction.attributes.interceptor,autoProxyCreator,dao.operateur,dao.entite,dao.site,dao.operateur_Site,dao.anomalieFamilleCommuneDAO,dao.anomalieFamilleDAO,dao.keyGenerator,data.source,session.factory,transaction.manager]; root of BeanFactory hierarchy
2006-11-30 17:14:58,140 [ INFO] org.springframework.context.support.FileSystemXmlApplicationContext:324 - 21 beans defined in application context [org.springframework.context.support.FileSystemXmlApplicationContext;hashCode=19727353]
2006-11-30 17:14:58,234 [ INFO] org.springframework.aop.framework.DefaultAopProxyFactory:59 - CGLIB2 available: proxyTargetClass feature enabled
2006-11-30 17:14:58,312 [ INFO] org.springframework.context.support.FileSystemXmlApplicationContext:894 - Bean 'autoProxyCreator' is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2006-11-30 17:14:58,312 [ INFO] org.springframework.context.support.FileSystemXmlApplicationContext:475 - Unable to locate MessageSource with name 'messageSource': using default [org.springframework.context.support.DelegatingMessageSource@16a786]
2006-11-30 17:14:58,328 [ INFO] org.springframework.context.support.FileSystemXmlApplicationContext:497 - Unable to locate ApplicationEventMulticaster with name 'applicationEventMulticaster': using default [org.springframework.context.event.SimpleApplicationEventMulticaster@1193779]
2006-11-30 17:14:58,328 [ INFO] org.springframework.beans.factory.support.DefaultListableBeanFactory:278 - Pre-instantiating singletons in factory [org.springframework.beans.factory.support.DefaultListableBeanFactory defining beans [business.operateur,business.entite,business.site,business.operateur_site,business.anomalieFamilleCommune,business.anomalieFamille,business.keyGenerator,business.xlsFileBuilder,transaction.attributes.source,transaction.attributes.interceptor,autoProxyCreator,dao.operateur,dao.entite,dao.site,dao.operateur_Site,dao.anomalieFamilleCommuneDAO,dao.anomalieFamilleDAO,dao.keyGenerator,data.source,session.factory,transaction.manager]; root of BeanFactory hierarchy]
2006-11-30 17:14:58,500 [ INFO] org.hibernate.cfg.Environment:500 - Hibernate 3.2.0
2006-11-30 17:14:58,515 [ INFO] org.hibernate.cfg.Environment:533 - hibernate.properties not found
2006-11-30 17:14:58,515 [ INFO] org.hibernate.cfg.Environment:667 - Bytecode provider name : cglib
2006-11-30 17:14:58,515 [ INFO] org.hibernate.cfg.Environment:584 - using JDK 1.4 java.sql.Timestamp handling
2006-11-30 17:14:58,828 [ INFO] org.hibernate.cfg.HbmBinder:300 - Mapping class: com.webtiss.sita.sgp.model.Anomalie -> ano
2006-11-30 17:14:59,015 [ INFO] org.hibernate.cfg.HbmBinder:300 - Mapping class: com.webtiss.sita.sgp.model.AnomalieCommune -> ano_c
2006-11-30 17:14:59,125 [ INFO] org.hibernate.cfg.HbmBinder:300 - Mapping class: com.webtiss.sita.sgp.model.AnomalieFamille -> ano_fam
2006-11-30 17:14:59,156 [ INFO] org.hibernate.cfg.HbmBinder:300 - Mapping class: com.webtiss.sita.sgp.model.AnomalieFamilleCommune -> ano_fam_c
2006-11-30 17:14:59,171 [ INFO] org.hibernate.cfg.HbmBinder:300 - Mapping class: com.webtiss.sita.sgp.model.Balance -> balance
2006-11-30 17:14:59,203 [ INFO] org.hibernate.cfg.HbmBinder:300 - Mapping class: com.webtiss.sita.sgp.model.Collecte -> collecte
2006-11-30 17:14:59,234 [ INFO] org.hibernate.cfg.HbmBinder:300 - Mapping class: com.webtiss.sita.sgp.model.Conteneur -> conteneur
2006-11-30 17:14:59,312 [ INFO] org.hibernate.cfg.HbmBinder:300 - Mapping class: com.webtiss.sita.sgp.model.Dechet -> dechet
2006-11-30 17:14:59,343 [ INFO] org.hibernate.cfg.HbmBinder:300 - Mapping class: com.webtiss.sita.sgp.model.DechetFamille -> dechet_fam
2006-11-30 17:14:59,359 [ INFO] org.hibernate.cfg.HbmBinder:300 - Mapping class: com.webtiss.sita.sgp.model.Depot -> depot
2006-11-30 17:14:59,375 [ INFO] org.hibernate.cfg.HbmBinder:300 - Mapping class: com.webtiss.sita.sgp.model.Emplacement -> emplacement
2006-11-30 17:14:59,406 [ INFO] org.hibernate.cfg.HbmBinder:300 - Mapping class: com.webtiss.sita.sgp.model.Entite -> entites
2006-11-30 17:14:59,421 [ INFO] org.hibernate.cfg.HbmBinder:300 - Mapping class: com.webtiss.sita.sgp.model.EtiquetteConteneur -> etiq_cont
2006-11-30 17:14:59,500 [ INFO] org.hibernate.cfg.HbmBinder:300 - Mapping class: com.webtiss.sita.sgp.model.IdentifiantCCollecte -> idccollecte
2006-11-30 17:14:59,515 [ INFO] org.hibernate.cfg.HbmBinder:300 - Mapping class: com.webtiss.sita.sgp.model.identifiantDepot -> idddepos
2006-11-30 17:14:59,531 [ INFO] org.hibernate.cfg.HbmBinder:300 - Mapping class: com.webtiss.sita.sgp.model.IdentifiantGenerique -> identifiantg
2006-11-30 17:14:59,562 [ INFO] org.hibernate.cfg.HbmBinder:300 - Mapping class: com.webtiss.sita.sgp.model.IdentifiantPrestationCollecter -> idpcollect
2006-11-30 17:14:59,593 [ INFO] org.hibernate.cfg.HbmBinder:300 - Mapping class: com.webtiss.sita.sgp.model.IdentifiantVCollecte -> idvcollecte
2006-11-30 17:14:59,671 [ INFO] org.hibernate.cfg.HbmBinder:300 - Mapping class: com.webtiss.sita.sgp.model.IdentifiantVVidage -> idvvidage
2006-11-30 17:14:59,703 [ INFO] org.hibernate.cfg.HbmBinder:300 - Mapping class: com.webtiss.sita.sgp.model.Prestation -> presta
2006-11-30 17:14:59,718 [ INFO] org.hibernate.cfg.HbmBinder:300 - Mapping class: com.webtiss.sita.sgp.model.PrestationFamille -> presta_fam
2006-11-30 17:14:59,734 [ INFO] org.hibernate.cfg.HbmBinder:300 - Mapping class: com.webtiss.sita.sgp.model.PrestationFinie -> presta_finie
2006-11-30 17:14:59,765 [ INFO] org.hibernate.cfg.HbmBinder:300 - Mapping class: com.webtiss.sita.sgp.model.Site -> site
2006-11-30 17:14:59,828 [ INFO] org.hibernate.cfg.HbmBinder:300 - Mapping class: com.webtiss.sita.sgp.model.TerminalPortable -> tp
2006-11-30 17:14:59,843 [ INFO] org.hibernate.cfg.HbmBinder:300 - Mapping class: com.webtiss.sita.sgp.model.Unite -> unites
2006-11-30 17:14:59,859 [ INFO] org.hibernate.cfg.HbmBinder:300 - Mapping class: com.webtiss.sita.sgp.model.Operateur -> operateur
2006-11-30 17:14:59,875 [ INFO] org.hibernate.cfg.HbmBinder:300 - Mapping class: com.webtiss.sita.sgp.model.Operateur_Site -> operateur_site
2006-11-30 17:14:59,921 [ INFO] org.hibernate.cfg.HbmBinder:300 - Mapping class: com.webtiss.sita.sgp.model.Vidage -> vidage
2006-11-30 17:14:59,937 [ INFO] org.hibernate.cfg.HbmBinder:300 - Mapping class: com.webtiss.sita.sgp.model.Zone -> zone
2006-11-30 17:15:00,015 [ INFO] org.springframework.orm.hibernate3.LocalSessionFactoryBean:738 - Building new Hibernate SessionFactory
2006-11-30 17:15:00,015 [ INFO] org.hibernate.cfg.HbmBinder:2375 - Mapping collection: com.webtiss.sita.sgp.model.AnomalieFamille.anomalies -> ano
2006-11-30 17:15:00,015 [ INFO] org.hibernate.cfg.HbmBinder:2375 - Mapping collection: com.webtiss.sita.sgp.model.AnomalieFamilleCommune.anomalieComunnes -> ano_c
2006-11-30 17:15:00,015 [ INFO] org.hibernate.cfg.HbmBinder:2375 - Mapping collection: com.webtiss.sita.sgp.model.Site.siteOperateurs -> operateur_site
2006-11-30 17:15:00,015 [ INFO] org.hibernate.cfg.HbmBinder:2375 - Mapping collection: com.webtiss.sita.sgp.model.Site.listFamilleAnomalie -> ano_fam
2006-11-30 17:15:00,078 [ INFO] org.hibernate.cfg.HbmBinder:2375 - Mapping collection: com.webtiss.sita.sgp.model.Operateur.operateurSites -> operateur_site
2006-11-30 17:15:00,093 [ INFO] org.hibernate.connection.ConnectionProviderFactory:72 - Initializing connection provider: org.springframework.orm.hibernate3.LocalDataSourceConnectionProvider
2006-11-30 17:15:00,296 [ INFO] org.hibernate.cfg.SettingsFactory:81 - RDBMS: Microsoft SQL Server, version: 09.00.1399
2006-11-30 17:15:00,343 [ INFO] org.hibernate.cfg.SettingsFactory:82 - JDBC driver: jTDS Type 4 JDBC Driver for MS SQL Server and Sybase, version: 1.2
2006-11-30 17:15:00,359 [ INFO] org.hibernate.dialect.Dialect:141 - Using dialect: org.hibernate.dialect.SQLServerDialect
2006-11-30 17:15:00,390 [ INFO] org.hibernate.transaction.TransactionFactoryFactory:31 - Using default transaction strategy (direct JDBC transactions)
2006-11-30 17:15:00,406 [ INFO] org.hibernate.transaction.TransactionManagerLookupFactory:33 - No TransactionManagerLookup configured (in JTA environment, use of read-write or transactional second-level cache is not recommended)
2006-11-30 17:15:00,406 [ INFO] org.hibernate.cfg.SettingsFactory:134 - Automatic flush during beforeCompletion(): disabled
2006-11-30 17:15:00,406 [ INFO] org.hibernate.cfg.SettingsFactory:138 - Automatic session close at end of transaction: disabled
2006-11-30 17:15:00,406 [ INFO] org.hibernate.cfg.SettingsFactory:153 - Scrollable result sets: enabled
2006-11-30 17:15:00,406 [ INFO] org.hibernate.cfg.SettingsFactory:161 - JDBC3 getGeneratedKeys(): enabled
2006-11-30 17:15:00,406 [ INFO] org.hibernate.cfg.SettingsFactory:169 - Connection release mode: on_close
2006-11-30 17:15:00,406 [ INFO] org.hibernate.cfg.SettingsFactory:196 - Default batch fetch size: 1
2006-11-30 17:15:00,406 [ INFO] org.hibernate.cfg.SettingsFactory:200 - Generate SQL with comments: disabled
2006-11-30 17:15:00,406 [ INFO] org.hibernate.cfg.SettingsFactory:204 - Order SQL updates by primary key: disabled
2006-11-30 17:15:00,406 [ INFO] org.hibernate.cfg.SettingsFactory:369 - Query translator: org.hibernate.hql.ast.ASTQueryTranslatorFactory
2006-11-30 17:15:00,421 [ INFO] org.hibernate.hql.ast.ASTQueryTranslatorFactory:24 - Using ASTQueryTranslatorFactory
2006-11-30 17:15:00,421 [ INFO] org.hibernate.cfg.SettingsFactory:212 - Query language substitutions: {}
2006-11-30 17:15:00,421 [ INFO] org.hibernate.cfg.SettingsFactory:217 - JPA-QL strict compliance: disabled
2006-11-30 17:15:00,421 [ INFO] org.hibernate.cfg.SettingsFactory:222 - Second-level cache: enabled
2006-11-30 17:15:00,421 [ INFO] org.hibernate.cfg.SettingsFactory:226 - Query cache: enabled
2006-11-30 17:15:00,421 [ INFO] org.hibernate.cfg.SettingsFactory:356 - Cache provider: net.sf.ehcache.hibernate.EhCacheProvider
2006-11-30 17:15:00,437 [ INFO] org.hibernate.cfg.SettingsFactory:241 - Optimize cache for minimal puts: disabled
2006-11-30 17:15:00,437 [ INFO] org.hibernate.cfg.SettingsFactory:250 - Structured second-level cache entries: disabled
2006-11-30 17:15:00,437 [ INFO] org.hibernate.cfg.SettingsFactory:343 - Query cache factory: org.hibernate.cache.StandardQueryCacheFactory
2006-11-30 17:15:00,437 [ INFO] org.hibernate.cfg.SettingsFactory:270 - Echoing all SQL to stdout
2006-11-30 17:15:00,437 [ INFO] org.hibernate.cfg.SettingsFactory:277 - Statistics: disabled
2006-11-30 17:15:00,437 [ INFO] org.hibernate.cfg.SettingsFactory:281 - Deleted entity synthetic identifier rollback: disabled
2006-11-30 17:15:00,437 [ INFO] org.hibernate.cfg.SettingsFactory:296 - Default entity-mode: pojo
2006-11-30 17:15:00,500 [ INFO] org.hibernate.impl.SessionFactoryImpl:161 - building session factory
2006-11-30 17:15:00,515 [ WARN] net.sf.ehcache.config.ConfigurationFactory:127 - No configuration found. Configuring ehcache from ehcache-failsafe.xml found in the classpath: jar:file:/C:/Documents%20and%20Settings/chantit/Mes%20documents/DEV/eclipse%20Projects/sita_sgp/src/webapp/WEB-INF/lib/hibernate%203.2/ehcache-1.2.jar!/ehcache-failsafe.xml
2006-11-30 17:15:00,703 [ WARN] net.sf.ehcache.hibernate.EhCacheProvider:89 - Could not find a specific ehcache configuration for cache named [com.webtiss.sita.sgp.model.AnomalieFamille]; using defaults.
2006-11-30 17:15:01,046 [ WARN] net.sf.ehcache.hibernate.EhCacheProvider:89 - Could not find a specific ehcache configuration for cache named [com.webtiss.sita.sgp.model.Anomalie]; using defaults.
2006-11-30 17:15:01,078 [ WARN] net.sf.ehcache.hibernate.EhCacheProvider:89 - Could not find a specific ehcache configuration for cache named [com.webtiss.sita.sgp.model.IdentifiantVCollecte]; using defaults.
2006-11-30 17:15:01,093 [ WARN] net.sf.ehcache.hibernate.EhCacheProvider:89 - Could not find a specific ehcache configuration for cache named [com.webtiss.sita.sgp.model.Prestation]; using defaults.
2006-11-30 17:15:01,125 [ WARN] net.sf.ehcache.hibernate.EhCacheProvider:89 - Could not find a specific ehcache configuration for cache named [com.webtiss.sita.sgp.model.Emplacement]; using defaults.
2006-11-30 17:15:01,140 [ WARN] net.sf.ehcache.hibernate.EhCacheProvider:89 - Could not find a specific ehcache configuration for cache named [com.webtiss.sita.sgp.model.Operateur]; using defaults.
2006-11-30 17:15:01,171 [ WARN] net.sf.ehcache.hibernate.EhCacheProvider:89 - Could not find a specific ehcache configuration for cache named [com.webtiss.sita.sgp.model.AnomalieFamilleCommune]; using defaults.
2006-11-30 17:15:01,187 [ WARN] net.sf.ehcache.hibernate.EhCacheProvider:89 - Could not find a specific ehcache configuration for cache named [com.webtiss.sita.sgp.model.Dechet]; using defaults.
2006-11-30 17:15:01,234 [ WARN] net.sf.ehcache.hibernate.EhCacheProvider:89 - Could not find a specific ehcache configuration for cache named [com.webtiss.sita.sgp.model.PrestationFinie]; using defaults.
2006-11-30 17:15:01,250 [ WARN] net.sf.ehcache.hibernate.EhCacheProvider:89 - Could not find a specific ehcache configuration for cache named [com.webtiss.sita.sgp.model.Entite]; using defaults.
2006-11-30 17:15:01,281 [ WARN] net.sf.ehcache.hibernate.EhCacheProvider:89 - Could not find a specific ehcache configuration for cache named [com.webtiss.sita.sgp.model.Balance]; using defaults.
2006-11-30 17:15:01,406 [ WARN] net.sf.ehcache.hibernate.EhCacheProvider:89 - Could not find a specific ehcache configuration for cache named [com.webtiss.sita.sgp.model.identifiantDepot]; using defaults.
2006-11-30 17:15:01,421 [ WARN] net.sf.ehcache.hibernate.EhCacheProvider:89 - Could not find a specific ehcache configuration for cache named [com.webtiss.sita.sgp.model.Depot]; using defaults.
2006-11-30 17:15:01,453 [ WARN] net.sf.ehcache.hibernate.EhCacheProvider:89 - Could not find a specific ehcache configuration for cache named [com.webtiss.sita.sgp.model.Collecte]; using defaults.
2006-11-30 17:15:01,484 [ WARN] net.sf.ehcache.hibernate.EhCacheProvider:89 - Could not find a specific ehcache configuration for cache named [com.webtiss.sita.sgp.model.IdentifiantGenerique]; using defaults.
2006-11-30 17:15:01,484 [ WARN] net.sf.ehcache.hibernate.EhCacheProvider:89 - Could not find a specific ehcache configuration for cache named [com.webtiss.sita.sgp.model.EtiquetteConteneur]; using defaults.
2006-11-30 17:15:01,500 [ WARN] net.sf.ehcache.hibernate.EhCacheProvider:89 - Could not find a specific ehcache configuration for cache named [com.webtiss.sita.sgp.model.Operateur_Site]; using defaults.
2006-11-30 17:15:01,500 [ INFO] org.hibernate.tuple.PojoInstantiator:61 - no default (no-argument) constructor for class: com.webtiss.sita.sgp.model.Operateur_Site (class must be instantiated by Interceptor)
2006-11-30 17:15:01,515 [ WARN] net.sf.ehcache.hibernate.EhCacheProvider:89 - Could not find a specific ehcache configuration for cache named [com.webtiss.sita.sgp.model.PrestationFamille]; using defaults.
2006-11-30 17:15:01,531 [ WARN] net.sf.ehcache.hibernate.EhCacheProvider:89 - Could not find a specific ehcache configuration for cache named [com.webtiss.sita.sgp.model.Conteneur]; using defaults.
2006-11-30 17:15:01,578 [ WARN] net.sf.ehcache.hibernate.EhCacheProvider:89 - Could not find a specific ehcache configuration for cache named [com.webtiss.sita.sgp.model.IdentifiantPrestationCollecter]; using defaults.
2006-11-30 17:15:01,593 [ WARN] net.sf.ehcache.hibernate.EhCacheProvider:89 - Could not find a specific ehcache configuration for cache named [com.webtiss.sita.sgp.model.TerminalPortable]; using defaults.
2006-11-30 17:15:01,609 [ WARN] net.sf.ehcache.hibernate.EhCacheProvider:89 - Could not find a specific ehcache configuration for cache named [com.webtiss.sita.sgp.model.IdentifiantVVidage]; using defaults.
2006-11-30 17:15:01,625 [ WARN] net.sf.ehcache.hibernate.EhCacheProvider:89 - Could not find a specific ehcache configuration for cache named [com.webtiss.sita.sgp.model.AnomalieCommune]; using defaults.
2006-11-30 17:15:01,640 [ WARN] net.sf.ehcache.hibernate.EhCacheProvider:89 - Could not find a specific ehcache configuration for cache named [com.webtiss.sita.sgp.model.Vidage]; using defaults.
2006-11-30 17:15:01,703 [ WARN] net.sf.ehcache.hibernate.EhCacheProvider:89 - Could not find a specific ehcache configuration for cache named [com.webtiss.sita.sgp.model.Unite]; using defaults.
2006-11-30 17:15:01,718 [ WARN] net.sf.ehcache.hibernate.EhCacheProvider:89 - Could not find a specific ehcache configuration for cache named [com.webtiss.sita.sgp.model.IdentifiantCCollecte]; using defaults.
2006-11-30 17:15:01,734 [ WARN] net.sf.ehcache.hibernate.EhCacheProvider:89 - Could not find a specific ehcache configuration for cache named [com.webtiss.sita.sgp.model.DechetFamille]; using defaults.
2006-11-30 17:15:01,750 [ WARN] net.sf.ehcache.hibernate.EhCacheProvider:89 - Could not find a specific ehcache configuration for cache named [com.webtiss.sita.sgp.model.Zone]; using defaults.
2006-11-30 17:15:01,765 [ WARN] net.sf.ehcache.hibernate.EhCacheProvider:89 - Could not find a specific ehcache configuration for cache named [com.webtiss.sita.sgp.model.AnomalieFamilleCommune.anomalieComunnes]; using defaults.
2006-11-30 17:15:01,781 [ WARN] net.sf.ehcache.hibernate.EhCacheProvider:89 - Could not find a specific ehcache configuration for cache named [com.webtiss.sita.sgp.model.Site.listFamilleAnomalie]; using defaults.
2006-11-30 17:15:01,781 [ WARN] net.sf.ehcache.hibernate.EhCacheProvider:89 - Could not find a specific ehcache configuration for cache named [com.webtiss.sita.sgp.model.Site.siteOperateurs]; using defaults.
2006-11-30 17:15:01,796 [ WARN] net.sf.ehcache.hibernate.EhCacheProvider:89 - Could not find a specific ehcache configuration for cache named [com.webtiss.sita.sgp.model.Operateur.operateurSites]; using defaults.
2006-11-30 17:15:01,796 [ WARN] net.sf.ehcache.hibernate.EhCacheProvider:89 - Could not find a specific ehcache configuration for cache named [com.webtiss.sita.sgp.model.AnomalieFamille.anomalies]; using defaults.
2006-11-30 17:15:01,968 [ INFO] org.hibernate.impl.SessionFactoryObjectFactory:82 - Not binding factory to JNDI, no JNDI name configured
2006-11-30 17:15:01,984 [ INFO] org.hibernate.tool.hbm2ddl.SchemaUpdate:115 - Running hbm2ddl schema update
2006-11-30 17:15:01,984 [ INFO] org.hibernate.tool.hbm2ddl.SchemaUpdate:126 - fetching database metadata
2006-11-30 17:15:01,984 [ INFO] org.hibernate.tool.hbm2ddl.SchemaUpdate:138 - updating schema
2006-11-30 17:15:02,031 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:40 - table found: sgp.dbo.ano
2006-11-30 17:15:02,031 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:41 - columns: [deleted, last_modified, code_ano, libelle, ano_fam_id, site_id, id]
2006-11-30 17:15:02,031 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:43 - foreign keys: [fk179e25db65d31, fk179e23e62734a, fk179e2b8d033e7]
2006-11-30 17:15:02,046 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:44 - indexes: [pk__ano__08ea5793, ano_ml]
2006-11-30 17:15:02,281 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:40 - table found: sgp.dbo.ano_c
2006-11-30 17:15:02,281 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:41 - columns: [codeanoc, libelle, ano_famc_id, id]
2006-11-30 17:15:02,281 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:43 - foreign keys: [fk58a95468d27ab0f, fk58a95468509e120]
2006-11-30 17:15:02,281 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:44 - indexes: [pk__ano_c__0ad2a005]
2006-11-30 17:15:02,546 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:40 - table found: sgp.dbo.ano_fam
2006-11-30 17:15:02,546 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:41 - columns: [libelle, code_ano_fam, site_id, id]
2006-11-30 17:15:02,546 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:43 - foreign keys: [fkcd3a7335c1370752, fkcd3a73353e62734a]
2006-11-30 17:15:02,562 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:44 - indexes: [pk__ano_fam__0cbae877]
2006-11-30 17:15:02,906 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:40 - table found: sgp.dbo.ano_fam_c
2006-11-30 17:15:02,906 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:41 - columns: [libelle, code_ano_fam_c, id]
2006-11-30 17:15:02,906 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:43 - foreign keys: []
2006-11-30 17:15:02,906 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:44 - indexes: [pk__ano_fam_c__0ea330e9]
2006-11-30 17:15:02,937 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:40 - table found: sgp.dbo.balance
2006-11-30 17:15:02,937 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:41 - columns: [deleted, pospoids, init, typedate, debframe, parite, nbdecimale, id, nom, last_modified, typeframe, stop, brut, ctrlflux, coefkg, data, longueurdate, bauds, commande, posvirgule]
2006-11-30 17:15:02,937 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:43 - foreign keys: []
2006-11-30 17:15:02,937 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:44 - indexes: [pk__balance__108b795b, balance_ml]
2006-11-30 17:15:02,984 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:40 - table found: sgp.dbo.collecte
2006-11-30 17:15:02,984 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:41 - columns: [regroup_ano_id, destination_id, emplacement_id, regoup_comment, id, qte_dechet, etiq_cont_id, date_heure, regroup_date_heure, commentaire, qte_cont, ano_id, operateur_id]
2006-11-30 17:15:02,984 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:43 - foreign keys: [fkda54c47b5ab9575a, fkda54c47b53ca358c, fkda54c47b2d9c8a99, fkda54c47bfb714d2a, fkda54c47bf0508539, fkda54c47bad2a03aa, fkda54c47b32923acd]
2006-11-30 17:15:02,984 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:44 - indexes: [pk__collecte__1273c1cd]
2006-11-30 17:15:03,031 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:40 - table found: sgp.dbo.conteneur
2006-11-30 17:15:03,031 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:41 - columns: [deleted, last_modified, tare, libelle, emplacement_id, code_cont, id]
2006-11-30 17:15:03,031 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:43 - foreign keys: [fke7bbd087ad2a03aa]
2006-11-30 17:15:03,031 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:44 - indexes: [conteneur_ml, pk__conteneur__145c0a3f]
2006-11-30 17:15:03,062 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:40 - table found: sgp.dbo.dechet
2006-11-30 17:15:03,062 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:41 - columns: [deleted, code_dechet, libelle, affich_qte_vid1, destination_id, id, unite_coll_id, affich_id_cont, conn_bal_coll, conn_bal_vid1, last_modified, unite_vid1_id, affich_qte_cont, dechet_fam_id, site_id, affich_qte_coll]
2006-11-30 17:15:03,062 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:43 - foreign keys: [fkb06277d5f1520a7b, fkb06277d53e62734a, fkb06277d59f86b70d, fkb06277d5bd38f2e1, fkb06277d5f0508539]
2006-11-30 17:15:03,062 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:44 - indexes: [pk__dechet__164452b1, dechet_ml]
2006-11-30 17:15:03,312 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:40 - table found: sgp.dbo.dechet_fam
2006-11-30 17:15:03,312 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:41 - columns: [libelle, code_dechet_fam, site_id, id]
2006-11-30 17:15:03,312 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:43 - foreign keys: [fk48353fa83e62734a]
2006-11-30 17:15:03,312 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:44 - indexes: [pk__dechet_fam__182c9b23]
2006-11-30 17:15:03,343 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:40 - table found: sgp.dbo.depot
2006-11-30 17:15:03,453 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:41 - columns: [date_heure, origine_id, commentaire, qte_cont, emplacement_id, ano_id, id, operateur_id]
2006-11-30 17:15:03,453 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:43 - foreign keys: [fk5b0ca345ab9575a, fk5b0ca34499e81a8, fk5b0ca3453ca358c, fk5b0ca34ad2a03aa, fk5b0ca34fb714d2a]
2006-11-30 17:15:03,453 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:44 - indexes: [pk__depot__1a14e395]
2006-11-30 17:15:03,484 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:40 - table found: sgp.dbo.emplacement
2006-11-30 17:15:03,484 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:41 - columns: [deleted, last_modified, libelle, commentaire, zone_id, code_emplct, id]
2006-11-30 17:15:03,484 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:43 - foreign keys: [fk2c5dc33dba99dd2a]
2006-11-30 17:15:03,484 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:44 - indexes: [emplacement_ml, pk__emplacement__1bfd2c07]
2006-11-30 17:15:03,500 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:40 - table found: sgp.dbo.entites
2006-11-30 17:15:03,515 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:41 - columns: [code_entite, libelle, id]
2006-11-30 17:15:03,515 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:43 - foreign keys: []
2006-11-30 17:15:03,515 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:44 - indexes: [pk__entites__1de57479]
2006-11-30 17:15:03,765 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:40 - table found: sgp.dbo.etiq_cont
2006-11-30 17:15:03,765 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:41 - columns: [deleted, last_modified, dechet_id, code_identifiant, conteneur_id, id]
2006-11-30 17:15:03,765 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:43 - foreign keys: [fk9b3745ab0170b6a, fk9b3745a4861048a]
2006-11-30 17:15:03,765 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:44 - indexes: [pk__etiq_cont__1fcdbceb, etiq_cont_ml]
2006-11-30 17:15:03,796 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:40 - table found: sgp.dbo.idccollecte
2006-11-30 17:15:03,796 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:41 - columns: [collect_id, identifiant, id]
2006-11-30 17:15:03,796 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:43 - foreign keys: [fkaf49332346a46fbb]
2006-11-30 17:15:03,796 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:44 - indexes: [pk__idccollecte__21b6055d]
2006-11-30 17:15:03,828 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:40 - table found: sgp.dbo.idddepos
2006-11-30 17:15:03,828 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:41 - columns: [depot_id, identifiant, id]
2006-11-30 17:15:03,828 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:43 - foreign keys: [fkf59ff52a9d0f184a]
2006-11-30 17:15:03,828 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:44 - indexes: [pk__idddepos__239e4dcf]
2006-11-30 17:15:03,843 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:40 - table found: sgp.dbo.identifiantg
2006-11-30 17:15:03,843 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:41 - columns: [deleted, last_modified, libelle, idmax, site_id, id]
2006-11-30 17:15:03,843 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:43 - foreign keys: [fke00e545c3e62734a]
2006-11-30 17:15:03,843 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:44 - indexes: [identifiantg_ml, pk__identifiantg__25869641]
2006-11-30 17:15:03,859 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:40 - table found: sgp.dbo.idpcollect
2006-11-30 17:15:03,859 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:41 - columns: [presta_finie_id, identifiant, id]
2006-11-30 17:15:03,859 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:43 - foreign keys: [fkc7f5c4d5d24b661b]
2006-11-30 17:15:03,859 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:44 - indexes: [pk__idpcollect__276edeb3]
2006-11-30 17:15:03,890 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:40 - table found: sgp.dbo.idvcollecte
2006-11-30 17:15:03,890 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:41 - columns: [vidage_id, identifiant, id]
2006-11-30 17:15:03,890 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:43 - foreign keys: [fkb05d70369caf25ea]
2006-11-30 17:15:03,890 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:44 - indexes: [pk__idvcollecte__29572725]
2006-11-30 17:15:03,906 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:40 - table found: sgp.dbo.idvvidage
2006-11-30 17:15:03,921 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:41 - columns: [vidage_id, identifiant, id]
2006-11-30 17:15:03,921 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:43 - foreign keys: [fk9578c9c99caf25ea]
2006-11-30 17:15:03,921 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:44 - indexes: [pk__idvvidage__2b3f6f97]
2006-11-30 17:15:03,953 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:40 - table found: sgp.dbo.operateur
2006-11-30 17:15:03,953 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:41 - columns: [deleted, last_modified, mdpessai, accespc, login, suivi_tp, prenom, mdp, profile, nom, id]
2006-11-30 17:15:03,953 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:43 - foreign keys: []
2006-11-30 17:15:03,953 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:44 - indexes: [operateur_ml, pk__operateur__2d27b809]
2006-11-30 17:15:04,203 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:40 - table found: sgp.dbo.operateur_site
2006-11-30 17:15:04,203 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:41 - columns: [deleted, last_modified, site_id, id, operateur_id]
2006-11-30 17:15:04,203 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:43 - foreign keys: [fk4f4a1da512450f4c, fk4f4a1da5fb714d2a, fk4f4a1da5c1370752, fk4f4a1da53e62734a]
2006-11-30 17:15:04,203 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:44 - indexes: [pk__operateur_site__7b5b524b, operateur_site_ml]
2006-11-30 17:15:04,234 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:40 - table found: sgp.dbo.presta
2006-11-30 17:15:04,234 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:41 - columns: [deleted, last_modified, affich_qte_oeuvre, libelle, affich_qte_cont, presta_fam_id, site_id, code_presta, destination_id, emplacement_id, unite_id, id]
2006-11-30 17:15:04,234 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:43 - foreign keys: [fkc594e49df0508539, fkc594e49d545c6d2a, fkc594e49d6f09fbd7, fkc594e49dad2a03aa, fkc594e49d3e62734a]
2006-11-30 17:15:04,234 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:44 - indexes: [presta_ml, pk__presta__2f10007b]
2006-11-30 17:15:04,500 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:40 - table found: sgp.dbo.presta_fam
2006-11-30 17:15:04,500 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:41 - columns: [code_presta_fam, libelle, site_id, id]
2006-11-30 17:15:04,500 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:43 - foreign keys: [fk715408703e62734a]
2006-11-30 17:15:04,500 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:44 - indexes: [pk__presta_fam__30f848ed]
2006-11-30 17:15:04,718 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:40 - table found: sgp.dbo.presta_finie
2006-11-30 17:15:04,718 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:41 - columns: [presta_id, date_heure_deb, date_heure_fin, commentaire, destination_id, qte_cont, emplacement_id, qte_oeuvre, ano_id, id, operateur_id]
2006-11-30 17:15:04,734 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:43 - foreign keys: [fk6c776045f0508539, fk6c7760457154341e, fk6c77604553ca358c, fk6c776045ad2a03aa, fk6c776045fb714d2a, fk6c7760455ab9575a]
2006-11-30 17:15:04,734 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:44 - indexes: [pk__presta_finie__32e0915f]
2006-11-30 17:15:04,750 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:40 - table found: sgp.dbo.site
2006-11-30 17:15:04,750 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:41 - columns: [deleted, adresse2, ville, cbvalider, telephone, logobg, texte1, connpesvid2, id, nom, last_modified, affich_regroup, texte2, logobd, balance_id, affich_poste, adresse1, siret, entite_id, texte3, codepostale, codesite, printer]
2006-11-30 17:15:04,750 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:43 - foreign keys: [fk35df475d04734a, fk35df47b96ca4a]
2006-11-30 17:15:04,750 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:44 - indexes: [pk__site__34c8d9d1, site_ml]
2006-11-30 17:15:04,781 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:40 - table found: sgp.dbo.tp
2006-11-30 17:15:04,781 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:41 - columns: [deleted, url_update, last_modified, last_version, actif, num_serie, commentaire, site_id, id, tp_version]
2006-11-30 17:15:04,781 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:43 - foreign keys: [fke7c3e62734a]
2006-11-30 17:15:04,781 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:44 - indexes: [tp_ml, pk__tp__36b12243]
2006-11-30 17:15:04,796 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:40 - table found: sgp.dbo.unites
2006-11-30 17:15:04,796 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:41 - columns: [deleted, last_modified, code_unite, type, libelle, site_id, id]
2006-11-30 17:15:04,796 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:43 - foreign keys: [fkcde695323e62734a]
2006-11-30 17:15:04,812 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:44 - indexes: [unites_ml, pk__unites__38996ab5]
2006-11-30 17:15:04,828 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:40 - table found: sgp.dbo.vidage
2006-11-30 17:15:04,828 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:41 - columns: [type_vidage, dechet_id, date_heure, qte_cont_vid, qte_cont_coll, commentaire, site_id, emplacement_id, ano_id, id, operateur_id, qte_dechet]
2006-11-30 17:15:04,828 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:43 - foreign keys: [fkcf526b4e53ca358c, fkcf526b4e4861048a, fkcf526b4efb714d2a, fkcf526b4e5ab9575a, fkcf526b4e3e62734a, fkcf526b4ead2a03aa]
2006-11-30 17:15:04,828 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:44 - indexes: [pk__vidage__3b75d760]
2006-11-30 17:15:04,859 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:40 - table found: sgp.dbo.zone
2006-11-30 17:15:04,859 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:41 - columns: [deleted, last_modified, activite, libelle, site_id, code_zone, id]
2006-11-30 17:15:04,859 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:43 - foreign keys: [fk3923ac3e62734a]
2006-11-30 17:15:04,859 [ INFO] org.hibernate.tool.hbm2ddl.TableMetadata:44 - indexes: [zone_ml, pk__zone__3d5e1fd2]
2006-11-30 17:15:04,859 [ INFO] org.hibernate.tool.hbm2ddl.SchemaUpdate:160 - schema update complete
2006-11-30 17:15:04,875 [ INFO] org.hibernate.cache.UpdateTimestampsCache:41 - starting update timestamps cache at region: org.hibernate.cache.UpdateTimestampsCache
2006-11-30 17:15:04,875 [ WARN] net.sf.ehcache.hibernate.EhCacheProvider:89 - Could not find a specific ehcache configuration for cache named [org.hibernate.cache.UpdateTimestampsCache]; using defaults.
2006-11-30 17:15:04,875 [ INFO] org.hibernate.cache.StandardQueryCache:52 - starting query cache at region: org.hibernate.cache.StandardQueryCache
2006-11-30 17:15:04,875 [ WARN] net.sf.ehcache.hibernate.EhCacheProvider:89 - Could not find a specific ehcache configuration for cache named [org.hibernate.cache.StandardQueryCache]; using defaults.
2006-11-30 17:15:05,031 [ INFO] org.springframework.orm.hibernate3.HibernateTransactionManager:373 - Using DataSource [org.apache.commons.dbcp.BasicDataSource@109ea96] of Hibernate SessionFactory for HibernateTransactionManager
2006-11-30 17:15:05,281 [ INFO] org.springframework.jdbc.datasource.JdbcTransactionObjectSupport:60 - JDBC 3.0 Savepoint class is available
2006-11-30 17:15:05,296 [DEBUG] org.springframework.orm.hibernate3.HibernateTransactionManager:286 - Using transaction object [org.springframework.orm.hibernate3.HibernateTransactionManager$HibernateTransactionObject@1c54796]
2006-11-30 17:15:05,296 [DEBUG] org.springframework.orm.hibernate3.HibernateTransactionManager:313 - Creating new transaction with name [com.webtiss.sita.sgp.business.IAnomalieFamilleCommuneBusiness.depthSave]
2006-11-30 17:15:05,359 [DEBUG] org.springframework.orm.hibernate3.HibernateTransactionManager:426 - Opened new Session [org.hibernate.impl.SessionImpl@18e4327] for Hibernate transaction
2006-11-30 17:15:05,359 [DEBUG] org.springframework.orm.hibernate3.HibernateTransactionManager:438 - Preparing JDBC Connection of Hibernate Session [org.hibernate.impl.SessionImpl@18e4327]
2006-11-30 17:15:05,406 [DEBUG] org.springframework.orm.hibernate3.HibernateTransactionManager:508 - Exposing Hibernate transaction as JDBC transaction [org.apache.commons.dbcp.PoolableConnection@1a99347]
2006-11-30 17:15:05,406 [DEBUG] com.webtiss.sita.sgp.business.impl.AnomalieFamilleCommuneBusiness:148 - 0
2006-11-30 17:15:05,406 [DEBUG] org.springframework.orm.hibernate3.HibernateTemplate:354 - Found thread-bound Session for HibernateTemplate
Hibernate: insert into ano_fam_c (code_ano_fam_c, libelle) values (?, ?)
2006-11-30 17:15:05,468 [DEBUG] org.springframework.orm.hibernate3.HibernateTemplate:378 - Not closing pre-bound Hibernate Session after HibernateTemplate
2006-11-30 17:15:05,468 [DEBUG] org.springframework.orm.hibernate3.HibernateTemplate:354 - Found thread-bound Session for HibernateTemplate
Hibernate: select this_.id as id22_0_, this_.adresse1 as adresse2_22_0_, this_.adresse2 as adresse3_22_0_, this_.balance_id as balance4_22_0_, this_.codepostale as codepost5_22_0_, this_.codesite as codesite22_0_, this_.connpesvid2 as connpesvid7_22_0_, this_.printer as printer22_0_, this_.logobd as logobd22_0_, this_.logobg as logobg22_0_, this_.nom as nom22_0_, this_.affich_regroup as affich12_22_0_, this_.siret as siret22_0_, this_.telephone as telephone22_0_, this_.texte1 as texte15_22_0_, this_.texte2 as texte16_22_0_, this_.texte3 as texte17_22_0_, this_.ville as ville22_0_, this_.entite_id as entite19_22_0_, this_.cbvalider as cbvalider22_0_, this_.affich_poste as affich21_22_0_ from site this_
2006-11-30 17:15:05,546 [DEBUG] org.springframework.orm.hibernate3.HibernateTemplate:378 - Not closing pre-bound Hibernate Session after HibernateTemplate
2006-11-30 17:15:05,562 [DEBUG] com.webtiss.sita.sgp.business.impl.AnomalieFamilleCommuneBusiness:156 - 1
2006-11-30 17:15:05,562 [DEBUG] org.springframework.orm.hibernate3.HibernateTemplate:354 - Found thread-bound Session for HibernateTemplate
Hibernate: insert into ano_fam (libelle, site_id, code_ano_fam) values (?, ?, ?)
2006-11-30 17:15:05,578 [ WARN] org.hibernate.util.JDBCExceptionReporter:71 - SQL Error: 547, SQLState: 23000
2006-11-30 17:15:05,578 [ERROR] org.hibernate.util.JDBCExceptionReporter:72 - The INSERT statement conflicted with the FOREIGN KEY constraint "FKCD3A7335C1370752". The conflict occurred in database "sgp", table "dbo.site", column 'id'.
2006-11-30 17:15:05,578 [DEBUG] org.springframework.orm.hibernate3.HibernateTemplate:378 - Not closing pre-bound Hibernate Session after HibernateTemplate
2006-11-30 17:15:05,578 [ERROR] com.webtiss.sita.sgp.business.impl.AnomalieFamilleCommuneBusiness:170 - erreur depth save
com.webtiss.sita.sgp.Exception.InexbeeDAOException: could not insert: [com.webtiss.sita.sgp.model.AnomalieFamille]; nested exception is org.hibernate.exception.ConstraintViolationException: could not insert: [com.webtiss.sita.sgp.model.AnomalieFamille]
at com.webtiss.sita.sgp.dao.hibernate.generique.AbstractDAOHibernate.save(AbstractDAOHibernate.java:71)
at com.webtiss.sita.sgp.dao.hibernate.AnomalieFamilleDAOHibernate.save(AnomalieFamilleDAOHibernate.java:25)
at com.webtiss.sita.sgp.business.impl.AnomalieFamilleCommuneBusiness.depthSave(AnomalieFamilleCommuneBusiness.java:166)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:585)
at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:318)
at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:203)
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:162)
at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:107)
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:185)
at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:209)
at $Proxy5.depthSave(Unknown Source)
at com.webtiss.sita.test.dao.AnoFamCDAOTestCase.testSave(AnoFamCDAOTestCase.java:29)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:585)
at junit.framework.TestCase.runTest(TestCase.java:164)
at junit.framework.TestCase.runBare(TestCase.java:130)
at junit.framework.TestResult$1.protect(TestResult.java:110)
at junit.framework.TestResult.runProtected(TestResult.java:128)
at junit.framework.TestResult.run(TestResult.java:113)
at junit.framework.TestCase.run(TestCase.java:120)
at junit.framework.TestSuite.runTest(TestSuite.java:228)
at junit.framework.TestSuite.run(TestSuite.java:223)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:478)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:344)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:196)
Caused by: org.hibernate.exception.ConstraintViolationException: could not insert: [com.webtiss.sita.sgp.model.AnomalieFamille]
at org.hibernate.exception.SQLStateConverter.convert(SQLStateConverter.java:71)
at org.hibernate.exception.JDBCExceptionHelper.convert(JDBCExceptionHelper.java:43)
at org.hibernate.id.insert.AbstractReturningDelegate.performInsert(AbstractReturningDelegate.java:40)
at org.hibernate.persister.entity.AbstractEntityPersister.insert(AbstractEntityPersister.java:2093)
at org.hibernate.persister.entity.AbstractEntityPersister.insert(AbstractEntityPersister.java:2573)
at org.hibernate.action.EntityIdentityInsertAction.execute(EntityIdentityInsertAction.java:47)
at org.hibernate.engine.ActionQueue.execute(ActionQueue.java:248)
at org.hibernate.event.def.AbstractSaveEventListener.performSaveOrReplicate(AbstractSaveEventListener.java:290)
at org.hibernate.event.def.AbstractSaveEventListener.performSave(AbstractSaveEventListener.java:180)
at org.hibernate.event.def.AbstractSaveEventListener.saveWithGeneratedId(AbstractSaveEventListener.java:108)
at org.hibernate.event.def.DefaultSaveOrUpdateEventListener.saveWithGeneratedOrRequestedId(DefaultSaveOrUpdateEventListener.java:186)
at org.hibernate.event.def.DefaultSaveEventListener.saveWithGeneratedOrRequestedId(DefaultSaveEventListener.java:33)
at org.hibernate.event.def.DefaultSaveOrUpdateEventListener.entityIsTransient(DefaultSaveOrUpdateEventListener.java:175)
at org.hibernate.event.def.DefaultSaveEventListener.performSaveOrUpdate(DefaultSaveEventListener.java:27)
at org.hibernate.event.def.DefaultSaveOrUpdateEventListener.onSaveOrUpdate(DefaultSaveOrUpdateEventListener.java:70)
at org.hibernate.impl.SessionImpl.fireSave(SessionImpl.java:535)
at org.hibernate.impl.SessionImpl.save(SessionImpl.java:523)
at org.hibernate.impl.SessionImpl.save(SessionImpl.java:519)
at org.springframework.orm.hibernate3.HibernateTemplate$12.doInHibernate(HibernateTemplate.java:625)
at org.springframework.orm.hibernate3.HibernateTemplate.execute(HibernateTemplate.java:362)
at org.springframework.orm.hibernate3.HibernateTemplate.save(HibernateTemplate.java:622)
at com.webtiss.sita.sgp.dao.hibernate.generique.AbstractDAOHibernate.save(AbstractDAOHibernate.java:69)
... 29 more
Caused by: java.sql.SQLException: The INSERT statement conflicted with the FOREIGN KEY constraint "FKCD3A7335C1370752". The conflict occurred in database "sgp", table "dbo.site", column 'id'.
at net.sourceforge.jtds.jdbc.SQLDiagnostic.addDiagnostic(SQLDiagnostic.java:365)
at net.sourceforge.jtds.jdbc.TdsCore.tdsErrorToken(TdsCore.java:2781)
at net.sourceforge.jtds.jdbc.TdsCore.nextToken(TdsCore.java:2224)
at net.sourceforge.jtds.jdbc.TdsCore.getMoreResults(TdsCore.java:628)
at net.sourceforge.jtds.jdbc.JtdsStatement.processResults(JtdsStatement.java:525)
at net.sourceforge.jtds.jdbc.JtdsStatement.executeSQL(JtdsStatement.java:487)
at net.sourceforge.jtds.jdbc.JtdsPreparedStatement.executeUpdate(JtdsPreparedStatement.java:421)
at org.apache.commons.dbcp.DelegatingPreparedStatement.executeUpdate(DelegatingPreparedStatement.java:101)
at org.hibernate.id.IdentityGenerator$GetGeneratedKeysDelegate.executeAndExtract(IdentityGenerator.java:73)
at org.hibernate.id.insert.AbstractReturningDelegate.performInsert(AbstractReturningDelegate.java:33)
... 48 more
2006-11-30 17:15:05,593 [DEBUG] org.springframework.orm.hibernate3.HibernateTransactionManager:705 - Triggering beforeCommit synchronization
2006-11-30 17:15:05,593 [DEBUG] org.springframework.orm.hibernate3.HibernateTransactionManager:718 - Triggering beforeCompletion synchronization
2006-11-30 17:15:05,593 [DEBUG] org.springframework.orm.hibernate3.HibernateTransactionManager:538 - Initiating transaction commit
2006-11-30 17:15:05,593 [DEBUG] org.springframework.orm.hibernate3.HibernateTransactionManager:554 - Committing Hibernate transaction on Session [org.hibernate.impl.SessionImpl@18e4327]
2006-11-30 17:15:05,593 [ERROR] org.hibernate.AssertionFailure:22 - an assertion failure occured (this may indicate a bug in Hibernate, but is more likely due to unsafe use of the session)
org.hibernate.AssertionFailure: null id in com.webtiss.sita.sgp.model.AnomalieFamille entry (don't flush the Session after an exception occurs)
at org.hibernate.event.def.DefaultFlushEntityEventListener.checkId(DefaultFlushEntityEventListener.java:55)
at org.hibernate.event.def.DefaultFlushEntityEventListener.getValues(DefaultFlushEntityEventListener.java:157)
at org.hibernate.event.def.DefaultFlushEntityEventListener.onFlushEntity(DefaultFlushEntityEventListener.java:113)
at org.hibernate.event.def.AbstractFlushingEventListener.flushEntities(AbstractFlushingEventListener.java:196)
at org.hibernate.event.def.AbstractFlushingEventListener.flushEverythingToExecutions(AbstractFlushingEventListener.java:76)
at org.hibernate.event.def.DefaultFlushEventListener.onFlush(DefaultFlushEventListener.java:26)
at org.hibernate.impl.SessionImpl.flush(SessionImpl.java:1000)
at org.hibernate.impl.SessionImpl.managedFlush(SessionImpl.java:338)
at org.hibernate.transaction.JDBCTransaction.commit(JDBCTransaction.java:106)
at org.springframework.orm.hibernate3.HibernateTransactionManager.doCommit(HibernateTransactionManager.java:558)
at org.springframework.transaction.support.AbstractPlatformTransactionManager.processCommit(AbstractPlatformTransactionManager.java:540)
at org.springframework.transaction.support.AbstractPlatformTransactionManager.commit(AbstractPlatformTransactionManager.java:510)
at org.springframework.transaction.interceptor.TransactionAspectSupport.completeTransactionAfterThrowing(TransactionAspectSupport.java:347)
at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:111)
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:185)
at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:209)
at $Proxy5.depthSave(Unknown Source)
at com.webtiss.sita.test.dao.AnoFamCDAOTestCase.testSave(AnoFamCDAOTestCase.java:29)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:585)
at junit.framework.TestCase.runTest(TestCase.java:164)
at junit.framework.TestCase.runBare(TestCase.java:130)
at junit.framework.TestResult$1.protect(TestResult.java:110)
at junit.framework.TestResult.runProtected(TestResult.java:128)
at junit.framework.TestResult.run(TestResult.java:113)
at junit.framework.TestCase.run(TestCase.java:120)
at junit.framework.TestSuite.runTest(TestSuite.java:228)
at junit.framework.TestSuite.run(TestSuite.java:223)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:478)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:344)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:196)
2006-11-30 17:15:05,609 [DEBUG] org.springframework.orm.hibernate3.HibernateTransactionManager:679 - Initiating transaction rollback on commit exception
org.hibernate.AssertionFailure: null id in com.webtiss.sita.sgp.model.AnomalieFamille entry (don't flush the Session after an exception occurs)
at org.hibernate.event.def.DefaultFlushEntityEventListener.checkId(DefaultFlushEntityEventListener.java:55)
at org.hibernate.event.def.DefaultFlushEntityEventListener.getValues(DefaultFlushEntityEventListener.java:157)
at org.hibernate.event.def.DefaultFlushEntityEventListener.onFlushEntity(DefaultFlushEntityEventListener.java:113)
at org.hibernate.event.def.AbstractFlushingEventListener.flushEntities(AbstractFlushingEventListener.java:196)
at org.hibernate.event.def.AbstractFlushingEventListener.flushEverythingToExecutions(AbstractFlushingEventListener.java:76)
at org.hibernate.event.def.DefaultFlushEventListener.onFlush(DefaultFlushEventListener.java:26)
at org.hibernate.impl.SessionImpl.flush(SessionImpl.java:1000)
at org.hibernate.impl.SessionImpl.managedFlush(SessionImpl.java:338)
at org.hibernate.transaction.JDBCTransaction.commit(JDBCTransaction.java:106)
at org.springframework.orm.hibernate3.HibernateTransactionManager.doCommit(HibernateTransactionManager.java:558)
at org.springframework.transaction.support.AbstractPlatformTransactionManager.processCommit(AbstractPlatformTransactionManager.java:540)
at org.springframework.transaction.support.AbstractPlatformTransactionManager.commit(AbstractPlatformTransactionManager.java:510)
at org.springframework.transaction.interceptor.TransactionAspectSupport.completeTransactionAfterThrowing(TransactionAspectSupport.java:347)
at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:111)
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:185)
at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:209)
at $Proxy5.depthSave(Unknown Source)
at com.webtiss.sita.test.dao.AnoFamCDAOTestCase.testSave(AnoFamCDAOTestCase.java:29)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:585)
at junit.framework.TestCase.runTest(TestCase.java:164)
at junit.framework.TestCase.runBare(TestCase.java:130)
at junit.framework.TestResult$1.protect(TestResult.java:110)
at junit.framework.TestResult.runProtected(TestResult.java:128)
at junit.framework.TestResult.run(TestResult.java:113)
at junit.framework.TestCase.run(TestCase.java:120)
at junit.framework.TestSuite.runTest(TestSuite.java:228)
at junit.framework.TestSuite.run(TestSuite.java:223)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:478)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:344)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:196)
2006-11-30 17:15:05,640 [DEBUG] org.springframework.orm.hibernate3.HibernateTransactionManager:573 - Rolling back Hibernate transaction on Session [org.hibernate.impl.SessionImpl@18e4327]
2006-11-30 17:15:05,640 [DEBUG] org.springframework.orm.hibernate3.HibernateTransactionManager:747 - Triggering afterCompletion synchronization
2006-11-30 17:15:05,640 [DEBUG] org.springframework.orm.hibernate3.HibernateTransactionManager:633 - Closing Hibernate Session [org.hibernate.impl.SessionImpl@18e4327] after transaction
2006-11-30 17:15:05,640 [DEBUG] org.springframework.orm.hibernate3.SessionFactoryUtils:779 - Closing Hibernate Session
2006-11-30 17:15:05,640 [ERROR] org.springframework.transaction.interceptor.TransactionInterceptor:350 - Application exception overridden by commit exception
com.webtiss.sita.sgp.Exception.InexbeeBusinessException: could not insert: [com.webtiss.sita.sgp.model.AnomalieFamille]; nested exception is org.hibernate.exception.ConstraintViolationException: could not insert: [com.webtiss.sita.sgp.model.AnomalieFamille]
at com.webtiss.sita.sgp.business.impl.AnomalieFamilleCommuneBusiness.depthSave(AnomalieFamilleCommuneBusiness.java:172)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:585)
at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:318)
at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:203)
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:162)
at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:107)
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java: