Advertisement
Guest User

Untitled

a guest
Nov 8th, 2018
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.02 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0">
  3.   <display-name>Web</display-name>
  4.   <context-param>
  5.     <param-name>driver</param-name>
  6.     <param-value>com.mysql.cj.jdbc.Driver</param-value>
  7.   </context-param>
  8.   <context-param>
  9.     <param-name>url</param-name>
  10.     <param-value>jdbc:mysql://localhost/studydb?useSSL=false&amp;serverTimezone=UTC</param-value>
  11.   </context-param>
  12.   <context-param>
  13.     <param-name>username</param-name>
  14.     <param-value>study</param-value>
  15.   </context-param>
  16.   <context-param>
  17.     <param-name>password</param-name>
  18.     <param-value>study</param-value>
  19.   </context-param>
  20.   <welcome-file-list>
  21.     <welcome-file>index.html</welcome-file>
  22.     <welcome-file>index.htm</welcome-file>
  23.     <welcome-file>index.jsp</welcome-file>
  24.   </welcome-file-list>
  25. </web-app>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement