You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1.1 KiB
29 lines
1.1 KiB
6 months ago
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<web-app version="3.1" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd">
|
||
|
<context-param>
|
||
|
<param-name>javax.faces.PROJECT_STAGE</param-name>
|
||
|
<param-value>Development</param-value>
|
||
|
</context-param>
|
||
|
<servlet>
|
||
|
<servlet-name>Faces Servlet</servlet-name>
|
||
|
<servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
|
||
|
<load-on-startup>1</load-on-startup>
|
||
|
</servlet>
|
||
|
<servlet-mapping>
|
||
|
<servlet-name>Faces Servlet</servlet-name>
|
||
|
<url-pattern>/faces/*</url-pattern>
|
||
|
</servlet-mapping>
|
||
|
<session-config>
|
||
|
<session-timeout>
|
||
|
30
|
||
|
</session-timeout>
|
||
|
</session-config>
|
||
|
<welcome-file-list>
|
||
|
<welcome-file>faces/productoLista.xhtml</welcome-file>
|
||
|
</welcome-file-list>
|
||
|
<context-param>
|
||
|
<param-name>javax.faces.CONFIG_FILES</param-name>
|
||
|
<param-value>/WEB-INF/faces-config.xml</param-value>
|
||
|
</context-param>
|
||
|
</web-app>
|