Openbravo.properties is the configuration page in which we specify the source folder, the database configuration and many other configuration parameters. For more information on Openbravo.properties configuration, refer here.
There will be many cases where we will need the values of the parameters configured in the Openbravo.properties. Few cases are.
There will be many cases where we will need the values of the parameters configured in the Openbravo.properties. Few cases are.
- When you have a native jdbc connectivity code and you do not want to change that, but bring that under a DAL code.
- When you have attached a file to a record and want to process that using the actual file path.
- When you need your current database name.
- When you need your current database parameters like URL, username,password, etc
- When you want the current context name using which the instance will be accessed.
- Import the package org.openbravo.base.session.OBPropertiesProvider.
- Use the getProperty(property name) method on the OBPropertiesProvider
- Pass the name of the parameter whose value you require to the getProperty() method.
package com.fugoconsulting.XXX.erpCommon.ad_process;
import org.apache.log4j.*;
import org.openbravo.erpCommon.utility.OBError;
import org.openbravo.scheduling.ProcessBundle;
import org.openbravo.dal.service.OBQuery;
import org.openbravo.dal.service.OBDal;
import org.openbravo.dal.core.SessionHandler;
import org.openbravo.base.session.OBPropertiesProvider;
/**Happy Working...
*
* @author shankar
*/
public class ImportFile implements DalBaseProcess{
private static Logger log=Logger.getLogger(ImportFile.class);
public void execute(ProcessBundle bundle) throws Exception {
try{
String RecordId=(String) bundle.getParams().get("XXX_Import_ID");
log.info("Record ID "+RecordId);
String sourcepath= OBPropertiesProvider.getInstance().getOpenbravoProperties().getProperty("source.path");
String dburl= OBPropertiesProvider.getInstance().getOpenbravoProperties().getProperty("bbdd.url");
String database = OBPropertiesProvider.getInstance().getOpenbravoProperties().getProperty("bbdd.sid");
String systemUser = OBPropertiesProvider.getInstance().getOpenbravoProperties().getProperty("bbdd.systemUser");
String systemPassword = OBPropertiesProvider.getInstance().getOpenbravoProperties().getProperty("bbdd.systemPassword");
}
catch(Exception e){
}
}
Add a comment