⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 systemconfig.java

📁 一个完整的网络订餐系统
💻 JAVA
字号:
package com.common;


public class SystemConfig
{

    public SystemConfig()
    {
    }

    public static String getDBConnection()
    {
        ApplicationContext appcxt = ApplicationContext.getInstance();
        String strDBConn = appcxt.getDburl();
        strDBConn = strDBConn + ";user=" + appcxt.getUser();
        strDBConn = strDBConn + ";password=" + appcxt.getPassword();
        strDBConn = strDBConn + ";";
        return strDBConn;
    }

    public static String getDbDriver()
    {
      ApplicationContext appcxt = ApplicationContext.getInstance();
      String dbDriver = appcxt.getDbDriver();
      return dbDriver;
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -