-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontext.xml
executable file
·25 lines (22 loc) · 1.15 KB
/
context.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<Context>
<Resource name="master"
auth="Container"
driverClassName="com.mysql.cj.jdbc.Driver"
factory="org.apache.tomcat.jdbc.pool.DataSourceFactory"
maxTotal="100" maxIdle="30" maxWaitMillis="10000"
type="javax.sql.DataSource"
username="mytestuser"
password="My6$Password"
url="jdbc:mysql://172.31.6.143:3306/moviedb?autoReconnect=true&allowPublicKeyRetrieval=true&useSSL=false&cachePrepStmts=true"/>
<!-- Defines a Data Source Connecting to localhost moviedbexample-->
<Resource name="jdbc/moviedb"
auth="Container"
driverClassName="com.mysql.cj.jdbc.Driver"
factory="org.apache.tomcat.jdbc.pool.DataSourceFactory"
maxTotal="100" maxIdle="30" maxWaitMillis="10000"
type="javax.sql.DataSource"
username="mytestuser"
password="My6$Password"
url="jdbc:mysql://localhost:3306/moviedb?autoReconnect=true&allowPublicKeyRetrieval=true&useSSL=false&cachePrepStmts=true"/>
</Context>