IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Hibernate Java Discussion :

Test Hibernate persitence.xml


Sujet :

Hibernate Java

  1. #1
    Membre actif
    Profil pro
    Inscrit en
    Décembre 2009
    Messages
    81
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Décembre 2009
    Messages : 81
    Par défaut Test Hibernate persitence.xml
    Bonjour,

    Je souhaite tester ma classe DAO :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    @ContextConfiguration(locations = {"classpath:META-INF/persistence.xml"})
    public class UserControllerTest extends AbstractJUnit4SpringContextTests {
     
        @Autowired
        private UserDao userDao;
     
        public UserControllerTest() {
        }
     
        @Test
        public void addUser() {
            ..........
        }
    }

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    <?xml version="1.0" encoding="UTF-8"?>
    <persistence version="2.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_2_0.xsd">
        <persistence-unit name="persistence" transaction-type="RESOURCE_LOCAL">
            <provider>org.hibernate.ejb.HibernatePersistence</provider>
            <class>entity.Authorities</class>
            <class>entity.Users</class>
            <exclude-unlisted-classes>false</exclude-unlisted-classes>
            <validation-mode>NONE</validation-mode>
            <properties>
              .......................
            </properties>
        </persistence-unit>
    </persistence>
    Caused by: org.springframework.beans.factory.xml.XmlBeanDefinitionStoreException: Line 5 in XML document from class path resource [META-INF/persistence.xml] is invalid; nested exception is org.xml.sax.SAXParseException; lineNumber: 5; columnNumber: 75; cvc-elt.1 : Déclaration de l'élément 'persistence' introuvable.

    Caused by: org.xml.sax.SAXParseException: cvc-elt.1 : Déclaration de l'élément 'persistence' introuvable.

    Pouvez-vous m'aider ?

  2. #2
    Membre Expert Avatar de jeffray03
    Homme Profil pro
    Développeur informatique
    Inscrit en
    Juillet 2008
    Messages
    1 501
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Allemagne

    Informations professionnelles :
    Activité : Développeur informatique

    Informations forums :
    Inscription : Juillet 2008
    Messages : 1 501
    Par défaut
    salut,
    cela veut dire tout simplement que la version de JPA n´est pas bonne ou n´est pas supporté.
    essaies ceci:
    - supprimes
    - et cree la de nouveau en utilisant click droit sur le projet --> preferences --> projet facets --> selectionnes JPA et version --> apply.

    et voir si cela continue.

    Eric

  3. #3
    Membre actif
    Profil pro
    Inscrit en
    Décembre 2009
    Messages
    81
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Décembre 2009
    Messages : 81
    Par défaut
    J'i supprimé l'ancien persistence.xml

    new --> create a persistence Unit -->

    name : persistence
    persistance librairy : EclipseLink (JPA 2.0)
    Database connection : MYSQL
    Table generation Strategy : None

    The*target*server*for*the*project*is*not*set*properly.*Java*Persistence*features are*server-dependent*and*some*wizards*in*the*IDE*might*not*behave*as*expected *if*the*target*server*is*not*specified

  4. #4
    Membre actif
    Profil pro
    Inscrit en
    Décembre 2009
    Messages
    81
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Décembre 2009
    Messages : 81
    Par défaut
    J'ai résolu le problème précédant mais j'ai toujours l'erreur :

    cvc-elt.1 : Déclaration de l'élément 'persistence' introuvable.


    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    <?xml version="1.0" encoding="UTF-8"?>
    <persistence version="2.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_2_0.xsd">
      <persistence-unit name="persistence" transaction-type="RESOURCE_LOCAL">
        <provider>org.eclipse.persistence.jpa.PersistenceProvider</provider>
        <class>entity.Authorities</class>
        <class>entity.Users</class>
        <exclude-unlisted-classes>false</exclude-unlisted-classes>
        <properties>
    .....
        </properties>
      </persistence-unit>
    </persistence>

  5. #5
    Membre Expert Avatar de jeffray03
    Homme Profil pro
    Développeur informatique
    Inscrit en
    Juillet 2008
    Messages
    1 501
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Allemagne

    Informations professionnelles :
    Activité : Développeur informatique

    Informations forums :
    Inscription : Juillet 2008
    Messages : 1 501
    Par défaut
    tu l´as mis dans quel repertoire?
    ou peut-etre qu´il te manque quelques Jar.

  6. #6
    Membre actif
    Profil pro
    Inscrit en
    Décembre 2009
    Messages
    81
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Décembre 2009
    Messages : 81
    Par défaut
    Nom : ScreenShot074.jpg
Affichages : 919
Taille : 46,0 Ko

  7. #7
    Membre Expert Avatar de jeffray03
    Homme Profil pro
    Développeur informatique
    Inscrit en
    Juillet 2008
    Messages
    1 501
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Allemagne

    Informations professionnelles :
    Activité : Développeur informatique

    Informations forums :
    Inscription : Juillet 2008
    Messages : 1 501
    Par défaut
    as tu essayé :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    @ContextConfiguration(locations = {"classpath*:persistence.xml"})
    mais une question, c´est du Spring que tu fais las?
    si tel est le cas, alors pourquoi ne pas mettre le bon fichier de configuration:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    @ContextConfiguration(locations={"classpath*:applicationContext.xml"})
    et verifies aussi si ton fichier est present dans :

    Eric

  8. #8
    Membre actif
    Profil pro
    Inscrit en
    Décembre 2009
    Messages
    81
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Décembre 2009
    Messages : 81
    Par défaut
    J'ai bien pris en compte ton analyse et j'ai décidé de refondre mon environnement comme ça :

    http://www.mkyong.com/spring/maven-s...mysql-example/

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    public class UserControllerTest {
     
        ApplicationContext appContext = 
        	  new ClassPathXmlApplicationContext("/config/BeanLocations.xml");
     
        UserBo userBo = (UserBo)appContext.getBean("UserBo");
     
        @Test
        public void testFindData() {
            Users user = userBo.findUserByUsername("romain");
            Assert.assertNotNull(user);  
    }
    beanLocations

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    <beans xmlns="http://www.springframework.org/schema/beans"
           xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
           xsi:schemaLocation="http://www.springframework.org/schema/beans
                               http://www.springframework.org/schema/beans/spring-beans-2.5.xsd">
     
        <!-- Database Configuration -->
        <import resource="../database/dataSource.xml"/>
        <import resource="../database/hibernate.xml"/>
     
        <!-- Beans Declaration -->
        <import resource="../spring/users.xml"/>
        <import resource="../spring/authorities.xml"/>
     
    </beans>
    database/hibernate.xml

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    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
    <?xml version="1.0" encoding="UTF-8"?>
    <beans xmlns="http://www.springframework.org/schema/beans"
           xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
           xsi:schemaLocation="http://www.springframework.org/schema/beans
                               http://www.springframework.org/schema/beans/spring-beans-2.5.xsd">
     
        <!-- Hibernate session factory -->
        <bean id="sessionFactory" 
          class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
     
            <property name="dataSource">
                <ref bean="dataSource"/>
            </property>
     
            <property name="hibernateProperties">
                <props>
                    <prop key="hibernate.dialect">org.hibernate.dialect.MySQLDialect</prop>
                    <prop key="hibernate.show_sql">true</prop>
                </props>
            </property>
     
            <property name="mappingResources">
                <list>
                    <value>/hibernate/Authorities.hbm.xml</value>
                    <value>/hibernate/Users.hbm.xml</value>
                </list>
            </property>	
     
        </bean>
    </beans>
    et j'obtiens cette erreur :

    Tests in error:
    testFindData(UserControllerTest): Error creating bean with name 'sessionFactory' defined in class path resource [database/hibernate.xml]: Initialization of bean failed; nested exception is java.lang.NoClassDefFoundError: org/hibernate/cache/CacheProvider

  9. #9
    Membre Expert Avatar de jeffray03
    Homme Profil pro
    Développeur informatique
    Inscrit en
    Juillet 2008
    Messages
    1 501
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Allemagne

    Informations professionnelles :
    Activité : Développeur informatique

    Informations forums :
    Inscription : Juillet 2008
    Messages : 1 501
    Par défaut
    salut c´est quelle version d´hibernate que tu utilises:
    sinon essaies ceci:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    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
    <?xml version="1.0" encoding="UTF-8"?>
    <beans xmlns="http://www.springframework.org/schema/beans"
           xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
           xsi:schemaLocation="http://www.springframework.org/schema/beans
                               http://www.springframework.org/schema/beans/spring-beans-2.5.xsd">
     
        <!-- Hibernate session factory -->
        <bean id="sessionFactory" 
          class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">
     
            <property name="dataSource">
                <ref bean="dataSource"/>
            </property>
     
            <property name="hibernateProperties">
                <props>
                    <prop key="hibernate.dialect">org.hibernate.dialect.MySQLDialect</prop>
                    <prop key="hibernate.show_sql">true</prop>
                </props>
            </property>
     
            <property name="mappingResources">
                <list>
                    <value>/hibernate/Authorities.hbm.xml</value>
                    <value>/hibernate/Users.hbm.xml</value>
                </list>
            </property>	
     
        </bean>
    </beans>

  10. #10
    Membre actif
    Profil pro
    Inscrit en
    Décembre 2009
    Messages
    81
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Décembre 2009
    Messages : 81
    Par défaut
    Même erreur

    Nom : ScreenShot141.png
Affichages : 835
Taille : 68,2 Ko

  11. #11
    Membre Expert Avatar de jeffray03
    Homme Profil pro
    Développeur informatique
    Inscrit en
    Juillet 2008
    Messages
    1 501
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Allemagne

    Informations professionnelles :
    Activité : Développeur informatique

    Informations forums :
    Inscription : Juillet 2008
    Messages : 1 501
    Par défaut
    ok,
    as-tu stopper le serveur, fait un clean sur le projet et un clean sur le server?

    -- quelle version d´hibernate utilises tu?

    Eric

  12. #12
    Membre actif
    Profil pro
    Inscrit en
    Décembre 2009
    Messages
    81
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Décembre 2009
    Messages : 81
    Par défaut
    Oui j'ai stoppé le serveur, clean and build.

    <dependency>
    <groupId>org.hibernate</groupId>
    <artifactId>hibernate-core</artifactId>
    <version>4.2.6.Final</version>
    </dependency>

  13. #13
    Membre Expert Avatar de jeffray03
    Homme Profil pro
    Développeur informatique
    Inscrit en
    Juillet 2008
    Messages
    1 501
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Allemagne

    Informations professionnelles :
    Activité : Développeur informatique

    Informations forums :
    Inscription : Juillet 2008
    Messages : 1 501
    Par défaut
    alors utilises:

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    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
    <?xml version="1.0" encoding="UTF-8"?>
    <beans xmlns="http://www.springframework.org/schema/beans"
           xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
           xsi:schemaLocation="http://www.springframework.org/schema/beans
                               http://www.springframework.org/schema/beans/spring-beans-2.5.xsd">
     
        <!-- Hibernate session factory -->
        <bean id="sessionFactory" 
          class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
     
            <property name="dataSource">
                <ref bean="dataSource"/>
            </property>
     
            <property name="hibernateProperties">
                <props>
                    <prop key="hibernate.dialect">org.hibernate.dialect.MySQLDialect</prop>
                    <prop key="hibernate.show_sql">true</prop>
                </props>
            </property>
     
            <property name="mappingResources">
                <list>
                    <value>/hibernate/Authorities.hbm.xml</value>
                    <value>/hibernate/Users.hbm.xml</value>
                </list>
            </property>	
     
        </bean>
    </beans>

  14. #14
    Membre actif
    Profil pro
    Inscrit en
    Décembre 2009
    Messages
    81
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Décembre 2009
    Messages : 81
    Par défaut
    Je vais plus loin mais toujours une erreur

    Nom : ScreenShot142.png
Affichages : 845
Taille : 93,7 Ko

    testFindData(UserControllerTest): Error creating bean with name 'sessionFactory' defined in class path resource [database/hibernate.xml]: Invocation of init method failed; nested exception is org.hibernate.HibernateException: Unable to instantiate default tuplizer [org.hibernate.tuple.component.PojoComponentTuplizer]

  15. #15
    Membre Expert Avatar de jeffray03
    Homme Profil pro
    Développeur informatique
    Inscrit en
    Juillet 2008
    Messages
    1 501
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Allemagne

    Informations professionnelles :
    Activité : Développeur informatique

    Informations forums :
    Inscription : Juillet 2008
    Messages : 1 501
    Par défaut
    essaies d´ajouter ceci:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
     
    <dependency>
        <groupId>javassist</groupId>
        <artifactId>javassist</artifactId>
        <version>3.12.1.GA</version>
    </dependency>

  16. #16
    Membre actif
    Profil pro
    Inscrit en
    Décembre 2009
    Messages
    81
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Décembre 2009
    Messages : 81
    Par défaut
    Même erreur

  17. #17
    Membre Expert Avatar de jeffray03
    Homme Profil pro
    Développeur informatique
    Inscrit en
    Juillet 2008
    Messages
    1 501
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Allemagne

    Informations professionnelles :
    Activité : Développeur informatique

    Informations forums :
    Inscription : Juillet 2008
    Messages : 1 501
    Par défaut
    il ya sans doute une erreur dissimulé dans tes getter() et setter().
    comme je n´ai pas de vision generale, je ne fais qe supposer. et aussi on n´arrive pas a ouvrir la derniere image envoyé.

  18. #18
    Membre actif
    Profil pro
    Inscrit en
    Décembre 2009
    Messages
    81
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Décembre 2009
    Messages : 81
    Par défaut
    @Entity
    @Table(name = "users")
    public class Users implements Serializable {

    private static final long serialVersionUID = 1L;

    private static final Logger LOGGER = LoggerFactory.getLogger(Users.class);

    @Id
    @Column(name = "username")
    private String username;
    @Column(name = "password")
    private String password;
    @Column(name = "enabled")
    private Boolean enabled;
    @Column(name = "email")
    private String email;


    @OneToMany(mappedBy = "users", cascade = CascadeType.ALL, fetch = FetchType.LAZY)
    private List<Authorities> authoritiesList;


    /**
    * Constructor
    */
    public Users() {
    }

    /**
    *
    * @param pUsername username
    */
    public Users(String pUsername) {
    this.username = pUsername;
    }

    /**
    *
    * @param pUsername username
    * @param pPassword password
    */
    public Users(String pUsername, String pPassword) {
    this.username = pUsername;
    this.password = pPassword;
    }

    public String getUsername() {
    return username;
    }

    public void setUsername(String pUsername) {
    this.username = pUsername;
    }

    public String getPassword() {
    return password;
    }

    public void setPassword(String pPassword) {
    this.password = pPassword;
    }

    public Boolean getEnabled() {
    return enabled;
    }

    public void setEnabled(Boolean pEnabled) {
    this.enabled = pEnabled;
    }

    public String getEmail() {
    return email;
    }

    public void setEmail(String pEmail) {
    this.email = pEmail;
    }

    public List<Authorities> getAuthoritiesList() {
    return authoritiesList;
    }


    public void setAuthoritiesList(List<Authorities> pAuthoritiesList) {
    this.authoritiesList = pAuthoritiesList;
    }

    @Override
    public int hashCode() {
    int hash = 0;
    hash += username != null ? username.hashCode() : 0;
    return hash;
    }

    @Override
    public boolean equals(Object object) {
    if (!(object instanceof Users)) {
    return false;
    }
    Users other = (Users) object;
    if ((this.username == null && other.username != null) || (this.username != null && !this.username.equals(other.username))) {
    return false;
    }
    return true;
    }

    @Override
    public String toString() {
    return "entity.Users[ username=" + username + " ]";
    }
    }



    @Embeddable
    public class AuthoritiesPK implements Serializable {

    private static final long serialVersionUID = 1L;

    @Column(name = "username")
    private String username;
    @Column(name = "authority")
    private String authority;

    /**
    * Constructor
    */
    public AuthoritiesPK() {
    }

    /**
    *
    * @param username username
    * @param authority authority
    */
    public AuthoritiesPK(String username, String authority) {
    this.username = username;
    this.authority = authority;
    }

    public String getUsername() {
    return username;
    }

    public void setUsername(String username) {
    this.username = username;
    }

    public String getAuthority() {
    return authority;
    }

    public void setAuthority(String authority) {
    this.authority = authority;
    }

    @Override
    public int hashCode() {
    int hash = 0;
    hash += username != null ? username.hashCode() : 0;
    hash += authority != null ? authority.hashCode() : 0;
    return hash;
    }

    @Override
    public boolean equals(Object obj) {

    if (obj == null) {
    return false;
    }
    if (getClass() != obj.getClass()) {
    return false;
    }
    final AuthoritiesPK other = (AuthoritiesPK) obj;
    if ((this.username == null) ? (other.username != null) : !this.username.equals(other.username)) {
    return false;
    }
    return true;
    }

    @Override
    public String toString() {
    return "entity.AuthoritiesPK[ username=" + username + ", authority=" + authority + " ]";
    }
    }


    @Entity
    @Table(name = "authorities")
    public class Authorities implements Serializable {

    private static final long serialVersionUID = 1L;

    @EmbeddedId
    protected AuthoritiesPK authoritiesPK;

    @ManyToOne
    @JoinColumn(name = "username", insertable = false, updatable = false)
    private Users users;

    /**
    * Constructor
    */
    public Authorities() {
    }

    /**
    *
    * @param pAuthoritiesPK authoritiesPK
    */
    public Authorities(AuthoritiesPK pAuthoritiesPK) {
    this.authoritiesPK = pAuthoritiesPK;
    }

    /**
    *
    * @param pUsername username
    * @param pAuthority authority
    */
    public Authorities(String pUsername, String pAuthority) {
    this.authoritiesPK = new AuthoritiesPK(pUsername, pAuthority);
    }

    public AuthoritiesPK getAuthoritiesPK() {
    return authoritiesPK;
    }

    public void setAuthoritiesPK(AuthoritiesPK pAuthoritiesPK) {
    this.authoritiesPK = pAuthoritiesPK;
    }

    @Override
    public int hashCode() {
    int hash = 0;
    hash += authoritiesPK != null ? authoritiesPK.hashCode() : 0;
    return hash;
    }

    public Users getUsers() {
    return users;
    }

    public void setUsers(Users users) {
    this.users = users;
    }

    @Override
    public String toString() {
    return authoritiesPK.getAuthority();
    }

    @Override
    public boolean equals(Object obj) {
    if (obj == null) {
    return false;
    }
    if (getClass() != obj.getClass()) {
    return false;
    }
    final Authorities other = (Authorities) obj;
    if (this.authoritiesPK != other.authoritiesPK && (this.authoritiesPK == null || !this.authoritiesPK.equals(other.authoritiesPK))) {
    return false;
    }
    return true;
    }
    }

  19. #19
    Membre Expert Avatar de jeffray03
    Homme Profil pro
    Développeur informatique
    Inscrit en
    Juillet 2008
    Messages
    1 501
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Allemagne

    Informations professionnelles :
    Activité : Développeur informatique

    Informations forums :
    Inscription : Juillet 2008
    Messages : 1 501
    Par défaut
    Une question:
    tu utilises les annotations ou les fichiers de mapping pour creer tes entités?

  20. #20
    Membre actif
    Profil pro
    Inscrit en
    Décembre 2009
    Messages
    81
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Décembre 2009
    Messages : 81
    Par défaut
    annotations

Discussions similaires

  1. [Hibernate] /hibernate.cfg.xml not found
    Par sabour_mounir dans le forum Hibernate
    Réponses: 1
    Dernier message: 18/05/2006, 12h00
  2. [Hibernate] /hibernate.cfg.xml not found
    Par sabour_mounir dans le forum Struts 1
    Réponses: 1
    Dernier message: 17/05/2006, 14h57
  3. [Hibernate] plusieurs hibernate.cfg.xml
    Par Michel38 dans le forum Hibernate
    Réponses: 7
    Dernier message: 18/01/2006, 08h12
  4. [Tomcat][hibernate] Pb initialisation hibernate.cfg.xml
    Par the.chojin dans le forum Tomcat et TomEE
    Réponses: 15
    Dernier message: 11/02/2005, 18h29
  5. hibernate.cfg.xml
    Par hbrice dans le forum Hibernate
    Réponses: 2
    Dernier message: 20/01/2005, 16h31

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo