Tabnine Logo
SrvDatabase.<init>
Code IndexAdd Tabnine to your IDE (free)

How to use
org.beigesoft.jdbc.service.SrvDatabase
constructor

Best Java code snippets using org.beigesoft.jdbc.service.SrvDatabase.<init> (Showing top 2 results out of 315)

origin: org.beigesoft/beigesoft-webcrud-jar

 /**
  * <p>Get SrvDatabase in lazy mode.</p>
  * @return SrvDatabase - SrvDatabase
  * @throws Exception - an exception
  */
 @Override
 public final synchronized SrvDatabase lazyGetSrvDatabase() throws Exception {
  String beanName = getSrvDatabaseName();
  SrvDatabase srvDatabase =
   (SrvDatabase) getBeansMap().get(beanName);
  if (srvDatabase == null) {
   srvDatabase = new SrvDatabase();
   srvDatabase.setLogger(lazyGetLogger());
   srvDatabase.setHlpInsertUpdate(lazyGetHlpInsertUpdate());
   srvDatabase.setDataSource(lazyGetDataSource());
   getBeansMap().put(beanName, srvDatabase);
   lazyGetLogger().info(null, AFactoryAppBeansJdbc.class, beanName
    + " has been created.");
  }
  return srvDatabase;
 }
}
origin: org.beigesoft/beige-web-jar

/**
 * <p>Get SrvDatabase in lazy mode.</p>
 * @return SrvDatabase - SrvDatabase
 * @throws Exception - an exception
 */
@Override
public final synchronized SrvDatabase lazyGetSrvDatabase() throws Exception {
 if (this.srvDatabase == null) {
  this.srvDatabase = new SrvDatabase();
  this.srvDatabase.setLogger(lazyGetLogger());
  this.srvDatabase.setHlpInsertUpdate(lazyGetHlpInsertUpdate());
  this.srvDatabase.setDataSource(lazyGetDataSource());
  this.srvDatabase.setSrvRecordRetriever(lazyGetSrvRecordRetriever());
  lazyGetLogger().info(AFactoryAppBeans.class,
   "SrvDatabase has been created.");
 }
 return this.srvDatabase;
}
org.beigesoft.jdbc.serviceSrvDatabase<init>

Popular methods of SrvDatabase

  • getHlpInsertUpdate
    Geter for hlpInsertUpdate.
  • getLogger
  • getOrEstablishConnection
    Getor establish connection per thread.
  • setDataSource
    Setter for dataSource.
  • setHlpInsertUpdate
    Setter for hlpInsertUpdate.
  • setLogger
  • setSrvRecordRetriever

Popular in Java

  • Making http requests using okhttp
  • onRequestPermissionsResult (Fragment)
  • setRequestProperty (URLConnection)
  • getSystemService (Context)
  • ArrayList (java.util)
    ArrayList is an implementation of List, backed by an array. All optional operations including adding
  • Random (java.util)
    This class provides methods that return pseudo-random values.It is dangerous to seed Random with the
  • Vector (java.util)
    Vector is an implementation of List, backed by an array and synchronized. All optional operations in
  • ThreadPoolExecutor (java.util.concurrent)
    An ExecutorService that executes each submitted task using one of possibly several pooled threads, n
  • TimeUnit (java.util.concurrent)
    A TimeUnit represents time durations at a given unit of granularity and provides utility methods to
  • DateTimeFormat (org.joda.time.format)
    Factory that creates instances of DateTimeFormatter from patterns and styles. Datetime formatting i
  • Top 12 Jupyter Notebook extensions
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now