📄 systemconfig.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 + -