## ------------------------------------------------------------- ## Load (Dev/Test/Prod) server specific properties ## ------------------------------------------------------------- ## This is a possible alternative to using JNDI to set environment ## properties externally (to the WAR file). This is another way ## your Dev, Test and Prod servers can have different properties. #load.properties=${HOME}/config/myapp.ebean.properties ebean.encryptKeyManager=com.avaje.tests.basic.encrypt.BasicEncyptKeyManager ebean.autofetch.querytuning=false ebean.autofetch.profiling=false ebean.autofetch.implicitmode=default_off #ebean.autofetch.implicitmode=default_onifempty ebean.autofetch.profiling.min=1 ebean.autofetch.profiling.base=10 #ebean.autofetch.profiling.rate=0.05 ebean.autofetch.traceUsageCollection=false ebean.ddl.generate=true ebean.ddl.run=true datasource.default=mysql ebean.persistBatch=NONE ebean.persistBatchOnCascade=ALL ebean.currentUserProvider=com.avaje.ebean.MyCurrentUserProvider #ebean.jsonInclude=NON_NULL #ebean.cluster.type=mcast #ebean.cluster.mcast.listen.port=9768 #ebean.cluster.mcast.listen.address=235.1.1.1 #ebean.cluster.mcast.listen.disableLoopback=false #ebean.cluster.mcast.send.port=9766 ##ebean.debug.remotetransaction=true #ebean.cluster.debuglevel=1 ebean.uuidStoreAsBinary=true ebean.cacheWarmingDelay=-1 ##ebean.transaction.rollbackOnChecked=false ebean.migration.appName=myapp ebean.migration.resourcePath=dbmigration/myapp ## ------------------------------------------------------------- ## DataSources (If using default Ebean DataSourceFactory) ## ------------------------------------------------------------- datasource.h2.username=sa datasource.h2.password= datasource.h2.databaseUrl=jdbc:h2:mem:tests;DB_CLOSE_DELAY=-1 datasource.h2.databaseDriver=org.h2.Driver datasource.h2.minConnections=1 datasource.h2.maxConnections=25 #datasource.h2.heartbeatsql=select 1 #datasource.h2.isolationlevel=read_committed #datasource.h2.capturestacktrace=true #datasource.h2.maxStackTraceSize=20 datasource.h2.poolListener=com.avaje.tests.basic.MyTestDataSourcePoolListener #datasource.h2.customProperties=IGNORECASE=TRUE;MODE=Oracle; datasource.h2autocommit.autoCommit=true datasource.h2autocommit.username=sa datasource.h2autocommit.password= datasource.h2autocommit.databaseUrl=jdbc:h2:mem:autocommittests datasource.h2autocommit.databaseDriver=org.h2.Driver datasource.h2other.username=sa datasource.h2other.password= datasource.h2other.databaseUrl=jdbc:h2:mem:h2other;DB_CLOSE_DELAY=-1 datasource.h2other.databaseDriver=org.h2.Driver datasource.h2ebasicver.username=sa datasource.h2ebasicver.password= datasource.h2ebasicver.databaseUrl=jdbc:h2:mem:h2ebasicver;DB_CLOSE_DELAY=-1 datasource.h2ebasicver.databaseDriver=org.h2.Driver datasource.sqlite.username= datasource.sqlite.password= datasource.sqlite.databaseUrl=jdbc:sqlite:mydb.db datasource.sqlite.databaseDriver=org.sqlite.JDBC datasource.sqlite.isolationlevel=read_uncommitted datasource.sqlite.minConnections=1 datasource.sqlite.maxConnections=25 datasource.hsqldb.username=sa datasource.hsqldb.password= datasource.hsqldb.databaseUrl=jdbc:hsqldb:mem:tests datasource.hsqldb.databaseDriver=org.hsqldb.jdbcDriver datasource.mysql.username=unit datasource.mysql.password=unit datasource.mysql.databaseUrl=jdbc:mysql://127.0.0.1:3306/unit datasource.mysql.databaseDriver=com.mysql.jdbc.Driver datasource.ora.username=unit datasource.ora.password=unit datasource.ora.databaseUrl=jdbc:oracle:thin:@//127.0.0.1:1521/orcl datasource.ora.databaseDriver=oracle.jdbc.driver.OracleDriver datasource.pg.username=unit datasource.pg.password=unit datasource.pg.databaseUrl=jdbc:postgresql://127.0.0.1:5432/unit datasource.pg.databaseDriver=org.postgresql.Driver datasource.ms.username=test datasource.ms.password=test datasource.ms.databaseUrl=jdbc:sqlserver://192.168.1.68:1433;databaseName=test datasource.ms.databaseDriver=com.microsoft.sqlserver.jdbc.SQLServerDriver