<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
- <context-param>
- <description>Full-qualified back class name, must implement DatabaseBackend interface</description>
- <param-name>database.backend.class</param-name>
- <param-value>org.mxchange.jcore.database.backend.base64.Base64CsvDatabaseBackend</param-value>
- </context-param>
- <context-param>
- <description>Login name for MySQL database, mostly not root</description>
- <param-name>database.mysql.login</param-name>
- <param-value>root</param-value>
- </context-param>
- <context-param>
- <description>Password for above login, an empty password can be archived by setting a space</description>
- <param-name>database.mysql.password</param-name>
- <param-value>root</param-value>
- </context-param>
- <context-param>
- <description>Hostname or IP address for MySQL server</description>
- <param-name>database.mysql.host</param-name>
- <param-value>localhost</param-value>
- </context-param>
- <context-param>
- <description>Name of MySQL catalog</description>
- <param-name>database.mysql.dbname</param-name>
- <param-value>test</param-value>
- </context-param>
- <context-param>
- <description>Data path for file-based database backends. This must be a relative path and it will reside 2 levels up from the server's web path.</description>
- <param-name>database.backend.storagepath</param-name>
- <param-value>data</param-value>
- </context-param>
<context-param>
<param-name>javax.faces.PROJECT_STAGE</param-name>
<param-value>Development</param-value>