Bug 135 : Add support to get properties file name from System.getenv("EBEAN_PROPS_FILE") & System.getProperty("ebean.props.file");
Priority 
High
Reported Version 
 
Logged By 
Rob
Status 
Fixed
Fixed Version 
2.0.2
Assigned To 
 
Product 
Ebean - core
Duplicate Of 
 
Created 
07/08/2009
Updated 
07/08/2009
Type 
Bug
 
Attachments 
No attachments

String fileName = System.getenv("EBEAN_PROPS_FILE");
if (fileName == null) {
fileName = System.getProperty("ebean.props.file");
if (fileName == null) {
fileName = "ebean.properties";
}
}

 
Rob 07 Aug 08:32
Reason

Support for getting the file name from an environment variable and system properties used to be in Ebean v1.

So this is adding support for that back.

Rob 07 Aug 08:32
Fixed in HEAD

Fixed in HEAD

woResponse

Upload a file