Merge pull request #15368 from paultrudel/fix-bbb-web-h2-error
refactor: Remove H2 from BBB-Web
This commit is contained in:
commit
b22b38ba16
@ -94,7 +94,6 @@ dependencies {
|
||||
implementation 'org.springframework.boot:spring-boot-starter-validation:2.6.1'
|
||||
implementation 'org.postgresql:postgresql:42.2.16'
|
||||
implementation 'org.hibernate:hibernate-core:5.6.1.Final'
|
||||
implementation 'com.h2database:h2:1.4.199'
|
||||
|
||||
//--- BigBlueButton Dependencies End
|
||||
console "org.grails:grails-console"
|
||||
|
@ -106,41 +106,3 @@ hibernate:
|
||||
queries: false
|
||||
use_second_level_cache: false
|
||||
use_query_cache: false
|
||||
dataSource:
|
||||
pooled: true
|
||||
jmxExport: true
|
||||
driverClassName: org.h2.Driver
|
||||
username: sa
|
||||
password: ''
|
||||
|
||||
environments:
|
||||
development:
|
||||
dataSource:
|
||||
dbCreate: create-drop
|
||||
url: jdbc:h2:mem:devDb;MVCC=TRUE;LOCK_TIMEOUT=10000;DB_CLOSE_ON_EXIT=FALSE
|
||||
test:
|
||||
dataSource:
|
||||
dbCreate: update
|
||||
url: jdbc:h2:mem:testDb;MVCC=TRUE;LOCK_TIMEOUT=10000;DB_CLOSE_ON_EXIT=FALSE
|
||||
production:
|
||||
dataSource:
|
||||
dbCreate: none
|
||||
url: jdbc:h2:./prodDb;MVCC=TRUE;LOCK_TIMEOUT=10000;DB_CLOSE_ON_EXIT=FALSE
|
||||
properties:
|
||||
jmxEnabled: true
|
||||
initialSize: 5
|
||||
maxActive: 50
|
||||
minIdle: 5
|
||||
maxIdle: 25
|
||||
maxWait: 10000
|
||||
maxAge: 600000
|
||||
timeBetweenEvictionRunsMillis: 5000
|
||||
minEvictableIdleTimeMillis: 60000
|
||||
validationQuery: SELECT 1
|
||||
validationQueryTimeout: 3
|
||||
validationInterval: 15000
|
||||
testOnBorrow: true
|
||||
testWhileIdle: true
|
||||
testOnReturn: false
|
||||
jdbcInterceptors: ConnectionState
|
||||
defaultTransactionIsolation: 2 # TRANSACTION_READ_COMMITTED
|
||||
|
Loading…
Reference in New Issue
Block a user