je viens de commencer à apprendre à développer des applications J2EE en utilisant le framework spring , alors je suis le tutorial "spring framework ", mais j'obtiens le message d'erreur suivant "ressource springapp n'est pas disponible" j'ai bien configuré tomcat et j'obtient tjrs le même msg



voiçi le code du web.xml



Code xml : 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
48
49
50
51
52
53
54
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.4"
 
xmlns="http://java.sun.com/xml/ns/j2ee"
 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee 

http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd" >
 
 
<servlet>
 
<servlet-name>springapp</servlet-name>
 
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
 
<load-on-startup>1</load-on-startup>
 
</servlet>
 
 
<servlet-mapping>
 
<servlet-name>springapp</servlet-name>
 
<url-pattern>*.htm</url-pattern>
 
</servlet-mapping>
 
<!-- <dependency>
 
<groupId>commons-logging</groupId>
 
<artifactId>commons-logging</artifactId>
 
<version>1.1</version>
 
</dependency> -->
 
 
<welcome-file-list>
 
<welcome-file>
 
index.jsp
 
</welcome-file>
 
</welcome-file-list>
 
 
</web-app>





le code du springapp-servlet.xml



Code xml : 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">
 
-->
 
<?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.0.xsd">
 
<!-- the application context definition for the springapp DispatcherServlet -->
 
 
<bean name="/hello.htm" class="springapp.web.HelloController"/>
 
 
</beans>