java服务器加载的时候读取数据库配置信息例子

java服务器加载的时候读取数据库配置信息例子,第1张

1jdbcproperties
driver=commicrosoftjdbcsqlserverSQLServerDriver
url=jdbc:microsoft:sqlserver://Ip地址:1433;databaseName=test
user=test
password=test
2一个Servlet
import javaioPrintStream;
import javasql;
import javautilResourceBundle;
public class DBOperator
{
public DBOperator()
{
}
public static void main(String args[])
{
Connection con = getConnection();
Systemoutprintln("connection success");
closeConnection(con);
Systemoutprintln("close success");
}
public static Connection getConnection()
{
try
{
return DriverManagergetConnection(url, user,
password);
}
catch(SQLException e)
{
eprintStackTrace();
}
return null;
}
public static void closeConnection(Connection con)
{
try
{
if(con != null)
conclose();
}
catch(SQLException e)
{
eprintStackTrace();
}
}
private static String url;
private static String user;
private static String password;
static
{
ResourceBundle bundle = ResourceBundlegetBundle("路径");
try
{
ClassforName(bundlegetString("driver"));
}
catch(ClassNotFoundException e)
{
eprintStackTrace();
}
url = bundlegetString("url");
user = bundlegetString("user");
password = bundlegetString("password");
}
}

显然不是,驱动是不断更新的,而下载的驱动包里集成的驱动版本是定格在下载那一天甚至更老的日期。

但只要确保网卡驱动离线安装包可用即可,只要新装电脑能上网了 就可以更新其他驱动。而且win10之后系统自身集成了万能网卡驱动,不再需要保存离线网卡驱动包。新装电脑安装完win10后网卡不缺驱动,可以上网,再下载或更新其他驱动即可。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zz/10389090.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-08
下一篇 2023-05-08

发表评论

登录后才能评论

评论列表(0条)

保存