Bonjour,

Après avoir passé un peu de temps à m'arracher les cheveux sur différents problèmes de configurations (.jar et autres plugins d'Eclipse), on m'a dit que Maven pouvait m'aider. Souffrant à nouveau de problèmes de calvitie précoce, je finalement pris le tuto hibernate, basé sur Maven :
--> documentation\manual\fr-FR\pdf\hibernate_reference.pdf
du .zip de Distribution
--> http://sourceforge.net/projects/hibe...3/3.6.5.Final/

Outre que les consignes sont données dans le désordre, au moment de la compilation avec Maven, ils arrivent à :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
Compiling 1 source file to /home/steve/projects/sandbox/hibernateTutorial/target/classes
tandis que je dois me contenter de
Code : Sélectionner tout - Visualiser dans une fenêtre à part
Nothing to compile - all classes are up to date
Si cela parle à quelqu'un, je suis tout ouïe, et je l'en remercie d'avance pour ses conseils.

Notez bien que j'suis un Windowsien pour qui installer signifie [Double-clic sur le install.exe puis Next Next Next sans lire les messages, et ça marche], donc ma compréhension de Maven est plus que limitée.

A tout hasard, voici mes fichiers :

pom.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<project
  xmlns="http://maven.apache.org/POM/4.0.0"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
	<modelVersion>4.0.0</modelVersion>
	<groupId>TestHibernate</groupId>
	<artifactId>TestHibernate</artifactId>
	<version>0.0.1-SNAPSHOT</version>
	<name>TestHibernate</name>
	<description>Test d'Hibernate</description>
 
	<build>
		<!-- we dont want the version to be part of the generated war file name -->
		<finalName>${TestHibernate.artifactId}</finalName>
	</build>
 
	<dependencies>
		<dependency>
			<groupId>org.hibernate</groupId>
			<artifactId>hibernate-core</artifactId>
			<version>3.6.3.Final</version>
		</dependency>
		<!-- Because this is a web app, we also have a dependency on the servlet api. -->
		<dependency>
			<groupId>javax.servlet</groupId>
			<artifactId>servlet-api</artifactId>
			<version>2.5</version>
		</dependency>
		<!-- Hibernate uses slf4j for logging, for our purposes here use the simple backend -->
		<dependency>
			<groupId>org.slf4j</groupId>
			<artifactId>slf4j-simple</artifactId>
			<version>1.6.1</version>
		</dependency>
		<!-- Hibernate gives you a choice of bytecode providers between cglib and javassist -->
		<dependency>
			<groupId>javassist</groupId>
			<artifactId>javassist</artifactId>
			<version>3.12.1.GA</version>
		</dependency>
	</dependencies>
 
	<properties>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
	</properties>
 
</project>
hibernate.cfg.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
<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
"http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
	<session-factory>
		<!-- Database connection settings -->
		<property name="connection.driver_class">com.mysql.jdbc.Driver</property>
		<property name="connection.url">jdbc:mysql://tibco-server:3306/dev</property>
		<property name="connection.username">Developpeur</property>
		<property name="connection.password">admin</property>
		<!-- JDBC connection pool (use the built-in) -->
		<property name="connection.pool_size">1</property>
		<!-- SQL dialect -->
		<property name="dialect">org.hibernate.dialect.MySQLDialect</property>
		<!-- Enable Hibernate's automatic session context management -->
		<property name="current_session_context_class">thread</property>
		<!-- Disable the second-level cache -->
		<property name="cache.provider_class">org.hibernate.cache.NoCacheProvider</property>
		<!-- Echo all executed SQL to stdout -->
		<property name="show_sql">true</property>
		<!-- Drop and re-create the database schema on startup -->
		<property name="hbm2ddl.auto">update</property>
		<mapping resource="org/hibernate/tutorial/domain/Event.hbm.xml" />
	</session-factory>
</hibernate-configuration>
Event.hbm.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
<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
"http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
	<session-factory>
		<!-- Database connection settings -->
		<property name="connection.driver_class">com.mysql.jdbc.Driver</property>
		<property name="connection.url">jdbc:mysql://tibco-server:3306/dev</property>
		<property name="connection.username">Developpeur</property>
		<property name="connection.password">admin</property>
		<!-- JDBC connection pool (use the built-in) -->
		<property name="connection.pool_size">1</property>
		<!-- SQL dialect -->
		<property name="dialect">org.hibernate.dialect.MySQLDialect</property>
		<!-- Enable Hibernate's automatic session context management -->
		<property name="current_session_context_class">thread</property>
		<!-- Disable the second-level cache -->
		<property name="cache.provider_class">org.hibernate.cache.NoCacheProvider</property>
		<!-- Echo all executed SQL to stdout -->
		<property name="show_sql">true</property>
		<!-- Drop and re-create the database schema on startup -->
		<property name="hbm2ddl.auto">update</property>
		<mapping resource="org/hibernate/tutorial/domain/Event.hbm.xml" />
	</session-factory>
</hibernate-configuration>
Event.java :
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
32
33
34
35
36
37
38
39
40
41
42
43
package org.hibernate.tutorial.domain;
 
import java.util.Date;
 
public class Event
{
    private Long   id;
    private String title;
    private Date   date;
 
    public Event()
    {}
 
    public Long getId()
    {
        return id;
    }
 
    private void setId(Long id)
    {
        this.id = id;
    }
 
    public Date getDate()
    {
        return date;
    }
 
    public void setDate(Date date)
    {
        this.date = date;
    }
 
    public String getTitle()
    {
        return title;
    }
 
    public void setTitle(String title)
    {
        this.title = title;
    }
}