Kenmegne
7 days ago 1bc8864f134272c4bf23a9b05831803a423a4771
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<?xml version="1.0" encoding="UTF-8"?>
<persistence version="1.0" xmlns="http://java.sun.com/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd">
    <persistence-unit name="fdxPU" transaction-type="JTA">
    
        <provider>org.hibernate.jpa.HibernatePersistenceProvider</provider>
        <jta-data-source>java:/fdxDS</jta-data-source>
        <shared-cache-mode>NONE</shared-cache-mode>
    
        <!--Module Administration-->
        <class>com.megatim.apifdxweb.model.administration.Action</class>
        <class>com.megatim.apifdxweb.model.administration.Role</class>
        <class>com.megatim.apifdxweb.model.administration.User</class>
        <class>com.megatim.apifdxweb.model.administration.JournalActionUtilisateur</class>
        <class>com.megatim.apifdxweb.model.administration.JournalConnexionUtilisateur</class>
        
        <class>com.megatim.apifdxweb.model.administration.TokenGeneration</class>
        
        <!--Module Referentiel-->
        <class>com.megatim.fdxcommons.model.referentiel.ApplicationSource</class>
        <class>com.megatim.fdxcommons.model.referentiel.ExtensionFichier</class>
        <class>com.megatim.fdxcommons.model.referentiel.GroupeNoeud</class>
        <class>com.megatim.fdxcommons.model.referentiel.GroupeParticipant</class>
        <class>com.megatim.fdxcommons.model.referentiel.Noeud</class>
        <class>com.megatim.fdxcommons.model.referentiel.Participant</class>
        <class>com.megatim.fdxcommons.model.referentiel.Pays</class>
        <class>com.megatim.fdxcommons.model.referentiel.Referentiel</class>
        <class>com.megatim.fdxcommons.model.referentiel.Routage</class>
        <class>com.megatim.fdxcommons.model.referentiel.StructureLigne</class>
        <class>com.megatim.fdxcommons.model.referentiel.TypeFichier</class>
        <class>com.megatim.fdxcommons.model.referentiel.ValidateurFichier</class>
        <class>com.megatim.fdxcommons.model.referentiel.ValidateurFichierConfiguration</class>
        <class>com.megatim.fdxcommons.model.integration.ColumnDefinition</class>
        <class>com.megatim.fdxcommons.model.auth.TokenAuthentification</class>
        
        <!-- Audit-->
        <class>com.megatim.apifdxweb.model.audit.AuditActionsParticipant</class>
        <class>com.megatim.apifdxweb.model.audit.AuditExportations</class>
        
        <class>com.megatim.fdxcommons.model.dataproduction.DataProduction</class>
        <class>com.megatim.fdxcommons.model.dataproduction.DataProductionHistorique</class>
        
        <class>com.megatim.fdxcommons.model.referentiel.natureproduction.NatureProductionFichier</class>
        <class>com.megatim.fdxcommons.model.log.UserActionLog</class>
        
        <!-- Traitement par lots -->
        <class>com.megatim.apifdxweb.model.tmp.TokenTmp</class>
        <class>com.megatim.apifdxweb.model.tmp.TypeFichierDataTmp</class>
        
        <!-- Historique des fichiers consommés au niveau des routes Camel-->
        <class>com.megatim.apifdxweb.model.camel.historique.ConsumedFilesHistory</class>
        
        <!-- Historique Intégration Référentiel -->
        <class>com.megatim.fdxcommons.model.referentiel.historique.ReferentielIntegrationHistorique</class>
        
        <properties>
            <property name="hibernate.dialect" value="org.hibernate.dialect.PostgreSQL95Dialect"/>
            <property name="hibernate.hbm2ddl.auto" value="update"/>
            <property name="hibernate.show_sql" value="false"/>
            <!--<property name="hibernate.jdbc.lob.non_contextual_creation" value="true"/>-->
        </properties>
    </persistence-unit>
 
</persistence>