forked from adempiere/backend
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feature/#801 hikari cp connection support (#887)
* Add support to default parameters for HikariCP references: https://github.com/solop-develop/adempiere-grpc-server/issues/801 * Add parameters for connection config
- Loading branch information
1 parent
4c509f3
commit 8179122
Showing
13 changed files
with
117 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,6 +27,5 @@ hs_err_pid* | |
/dependences/ | ||
/build/ | ||
*.properties | ||
|
||
# skip folder dependencies | ||
!dependencies/*.jar |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,15 +7,19 @@ LABEL maintainer="[email protected]; [email protected];" \ | |
ENV \ | ||
SERVER_PORT="50059" \ | ||
SERVER_LOG_LEVEL="WARNING" \ | ||
JWT_SECRET_KEY="2C51599F5B1248F945B93E05EFC43B3A15D8EB0707C0F02FD97028786C40976F" \ | ||
JWT_EXPIRATION_TIME=86400000 \ | ||
DB_HOST="localhost" \ | ||
DB_PORT="5432" \ | ||
DB_NAME="adempiere" \ | ||
DB_USER="adempiere" \ | ||
DB_PASSWORD="adempiere" \ | ||
DB_TYPE="PostgreSQL" \ | ||
ADEMPIERE_APPS_TYPE="wildfly" \ | ||
IDLE_TIMEOUT="300" \ | ||
MINIMUM_IDLE="1" \ | ||
MAXIMUM_POOL_SIZE="10" \ | ||
CONNECTION_TIMEOUT="5000" \ | ||
MAXIMUM_LIFETIME="6000" \ | ||
KEEPALIVE_TIME="360000" \ | ||
CONNECTION_TEST_QUERY="\"SELECT 1\"" \ | ||
SYSTEM_LOGO_URL="" \ | ||
TZ="America/Caracas" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,15 +7,19 @@ LABEL maintainer="[email protected]; [email protected];" \ | |
ENV \ | ||
SERVER_PORT="50059" \ | ||
SERVER_LOG_LEVEL="WARNING" \ | ||
JWT_SECRET_KEY="2C51599F5B1248F945B93E05EFC43B3A15D8EB0707C0F02FD97028786C40976F" \ | ||
JWT_EXPIRATION_TIME=86400000 \ | ||
DB_HOST="localhost" \ | ||
DB_PORT="5432" \ | ||
DB_NAME="adempiere" \ | ||
DB_USER="adempiere" \ | ||
DB_PASSWORD="adempiere" \ | ||
DB_TYPE="PostgreSQL" \ | ||
ADEMPIERE_APPS_TYPE="wildfly" \ | ||
IDLE_TIMEOUT="300" \ | ||
MINIMUM_IDLE="1" \ | ||
MAXIMUM_POOL_SIZE="10" \ | ||
CONNECTION_TIMEOUT="5000" \ | ||
MAXIMUM_LIFETIME="6000" \ | ||
KEEPALIVE_TIME="360000" \ | ||
CONNECTION_TEST_QUERY="\"SELECT 1\"" \ | ||
SYSTEM_LOGO_URL="" \ | ||
TZ="America/Caracas" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,10 @@ | ||
server: | ||
port: 50059 | ||
log_level: WARNING | ||
jwt_secret_key: 2C51599F5B1248F945B93E05EFC43B3A15D8EB0707C0F02FD97028786C40976F | ||
# Default 24 hours | ||
jwt_expiration_time: 86400000 | ||
database: | ||
host: localhost | ||
port: 5432 | ||
name: adempiere | ||
name: "adempiere" | ||
user: adempiere | ||
password: adempiere | ||
type: PostgreSQL |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters