-
Notifications
You must be signed in to change notification settings - Fork 762
/
Copy pathserver.xml
25 lines (20 loc) · 848 Bytes
/
server.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"?>
<server description="new server">
<featureManager>
<feature>javaee-8.0</feature>
<feature>microProfile-3.0</feature>
</featureManager>
<httpEndpoint id="defaultHttpEndpoint" httpPort="9080" httpsPort="9443"/>
<quickStartSecurity userName="duke" userPassword="dukeduke"/>
<dataSource id="DefaultDataSource" jndiName="jdbc/postgresql">
<jdbcDriver libraryRef="postgresql-library"/>
<properties.postgresql serverName="book-store"
portNumber="5432"
databaseName="postgres"
user="postgres"
password="postgres"/>
</dataSource>
<library id="postgresql-library">
<fileset dir="/opt/ol/wlp/lib"/>
</library>
</server>