diff --git a/packaging/plf-tomcat-resources/src/main/resources/conf/hsqldb.filters.properties b/packaging/plf-tomcat-resources/src/main/resources/conf/hsqldb.filters.properties index 42b97acb81..a561fd1cc9 100644 --- a/packaging/plf-tomcat-resources/src/main/resources/conf/hsqldb.filters.properties +++ b/packaging/plf-tomcat-resources/src/main/resources/conf/hsqldb.filters.properties @@ -20,6 +20,8 @@ validationQueryTimeoutOption=validationQueryTimeout="5" driverClassName=org.hsqldb.jdbcDriver username=sa password= -url=jdbc:hsqldb:file:\${exo.data.dir}/hsql/exo-plf +urlIdm=jdbc:hsqldb:file:\${exo.data.dir}/hsql/idm +urlJpa=jdbc:hsqldb:file:\${exo.data.dir}/hsql/jpa +urlJcr=jdbc:hsqldb:file:\${exo.data.dir}/hsql/jcr connectionParameters=;shutdown=true;hsqldb.write_delay=false;hsqldb.tx=mvcc; jpaConnectionParameters=;shutdown=true;hsqldb.write_delay=false;hsqldb.tx=mvcc; diff --git a/packaging/plf-tomcat-resources/src/main/resources/conf/mysql.filters.properties b/packaging/plf-tomcat-resources/src/main/resources/conf/mysql.filters.properties index 8f8edcc260..036d0d4728 100644 --- a/packaging/plf-tomcat-resources/src/main/resources/conf/mysql.filters.properties +++ b/packaging/plf-tomcat-resources/src/main/resources/conf/mysql.filters.properties @@ -20,6 +20,8 @@ validationQueryTimeoutOption=validationQueryTimeout="5" driverClassName=com.mysql.jdbc.Driver username=plf password=plf -url=jdbc:mysql://localhost:3306/plf +urlIdm=jdbc:mysql://localhost:3306/plf +urlJpa=jdbc:mysql://localhost:3306/plf +urlJcr=jdbc:mysql://localhost:3306/plf connectionParameters=?autoReconnect=true jpaConnectionParameters=?autoReconnect=true&characterEncoding=utf8 diff --git a/packaging/plf-tomcat-resources/src/main/resources/conf/postgres.filters.properties b/packaging/plf-tomcat-resources/src/main/resources/conf/postgres.filters.properties index c00b5e2478..bd69ab442e 100755 --- a/packaging/plf-tomcat-resources/src/main/resources/conf/postgres.filters.properties +++ b/packaging/plf-tomcat-resources/src/main/resources/conf/postgres.filters.properties @@ -20,6 +20,8 @@ validationQueryTimeoutOption=validationQueryTimeout="5" driverClassName=org.postgresql.Driver username=plf password=plf -url=jdbc:postgresql://localhost:5432/plf +urlIdm=jdbc:postgresql://localhost:5432/plf +urlJpa=jdbc:postgresql://localhost:5432/plf +urlJcr=jdbc:postgresql://localhost:5432/plf connectionParameters= jpaConnectionParameters= diff --git a/packaging/plf-tomcat-resources/src/main/resources/conf/postgresplus.filters.properties b/packaging/plf-tomcat-resources/src/main/resources/conf/postgresplus.filters.properties index d0e4200758..f0583d9ade 100755 --- a/packaging/plf-tomcat-resources/src/main/resources/conf/postgresplus.filters.properties +++ b/packaging/plf-tomcat-resources/src/main/resources/conf/postgresplus.filters.properties @@ -20,6 +20,8 @@ validationQueryTimeoutOption= driverClassName=com.edb.Driver username=plf password=plf -url=jdbc:edb://localhost:5432/plf +urlIdm=jdbc:edb://localhost:5432/plf +urlJpa=jdbc:edb://localhost:5432/plf +urlJcr=jdbc:edb://localhost:5432/plf connectionParameters= jpaConnectionParameters= diff --git a/packaging/plf-tomcat-resources/src/main/resources/conf/server.template.xml b/packaging/plf-tomcat-resources/src/main/resources/conf/server.template.xml index a7f959e161..ea5490758e 100644 --- a/packaging/plf-tomcat-resources/src/main/resources/conf/server.template.xml +++ b/packaging/plf-tomcat-resources/src/main/resources/conf/server.template.xml @@ -59,7 +59,7 @@ Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. testWhileIdle="true" testOnBorrow="true" testOnReturn="false" timeBetweenEvictionRunsMillis="30000" minEvictableIdleTimeMillis="60000" removeAbandonedOnBorrow="true" removeAbandonedOnMaintenance="true" removeAbandonedTimeout="300" logAbandoned="false" - username="${username}" password="${password}" driverClassName="${driverClassName}" url="${url}${jpaConnectionParameters}" /> + username="${username}" password="${password}" driverClassName="${driverClassName}" url="${urlIdm}${jpaConnectionParameters}" /> + username="${username}" password="${password}" driverClassName="${driverClassName}" url="${urlJcr}${connectionParameters}" /> + username="${username}" password="${password}" driverClassName="${driverClassName}" url="${urlJpa}${jpaConnectionParameters}" />