Biblioteca Java - Blame information for rev 12
Subversion Repositories:
Rev | Author | Line No. | Line |
---|---|---|---|
12 | mihai | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | |||
3 | <web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" | ||
4 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
5 | xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"> | ||
6 | |||
7 | |||
8 | <context-param> | ||
9 | <param-name>contextConfigLocation</param-name> | ||
10 | <param-value>/WEB-INF/Hello-servlet.xml</param-value> | ||
11 | </context-param> | ||
12 | |||
13 | <!-- Creates the Spring Container shared by all Servlets and Filters --> | ||
14 | <listener> | ||
15 | <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> | ||
16 | </listener> | ||
17 | |||
18 | <!-- Processes application requests --> | ||
19 | <servlet> | ||
20 | <servlet-name>Hello</servlet-name> | ||
21 | <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> | ||
22 | <load-on-startup>1</load-on-startup> | ||
23 | </servlet> | ||
24 | |||
25 | <servlet-mapping> | ||
26 | <servlet-name>Hello</servlet-name> | ||
27 | <url-pattern>/</url-pattern> | ||
28 | </servlet-mapping> | ||
29 | |||
30 | </web-app> |