冥冥之后 2016-10-18 06:14 采纳率: 83.3%
浏览 1632
已采纳

jdbc配置文件不读是为什么

我写的jdbc配置文件名字叫jdbc.properties
报错总是说在其他配置文件中找内容。。
[org.springframework.jndi.JndiPropertySource]JNDI lookup for name [mysql.driver] threw NamingException with message: Name [mysql.driver] is not bound in this Context. Unable to find [mysql.driver].. Returning null.
[org.springframework.core.env.PropertySourcesPropertyResolver]Searching for key 'mysql.driver' in [systemProperties]
[org.springframework.core.env.PropertySourcesPropertyResolver]Searching for key 'mysql.driver' in [systemEnvironment]
[org.springframework.core.env.PropertySourcesPropertyResolver]Could not find key 'mysql.driver' in any property source. Returning [null]
[org.springframework.core.env.PropertySourcesPropertyResolver]Searching for key 'mysql.driver' in [localProperties]
[org.springframework.core.env.PropertySourcesPropertyResolver]Found key 'mysql.driver' in [localProperties] with type [String] and value 'com.mysql.jdbc.Driver'
[org.springframework.core.env.PropertySourcesPropertyResolver]Searching for key 'mysql.url' in [environmentProperties]
[org.springframework.core.env.PropertySourcesPropertyResolver]Searching for key 'mysql.url' in [servletConfigInitParams]
[org.springframework.core.env.PropertySourcesPropertyResolver]Searching for key 'mysql.url' in [servletContextInitParams]
[org.springframework.core.env.PropertySourcesPropertyResolver]Searching for key 'mysql.url' in [jndiProperties]
[org.springframework.jndi.JndiT

  • 写回答

2条回答 默认 最新

  • qq_36285685 2016-10-18 06:40
    关注

    配置文件jdbc.properties中:
    jdbc.driver=com.MySQL.jdbc.Driver;
    jdbc.url=jdbc:mysql://localhost:3306/xxx;
    jdbc.user=sa;
    jdbc.pw=sa;

    代码中:
    //获取文件配置信息
    Properties pro = new Properties();
    pro.load(Conn.class.getResourceAsStream("jdbc.properties"));

    String url = pro.getProperty("jdbc.url");
    String user = pro.getProperty("jdbc.user");
    String pwd = pro.getProperty("jdbc.pw");
    String driver = pro.getProperty("jdbc.driver");

    //连接
    Class.forName(driver);
    conn = DriverManager.getConnection(url, user, pwd);

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥30 自适应 LMS 算法实现 FIR 最佳维纳滤波器matlab方案
  • ¥15 lingo18勾选global solver求解使用的算法
  • ¥15 全部备份安卓app数据包括密码,可以复制到另一手机上运行
  • ¥15 Python3.5 相关代码写作
  • ¥20 测距传感器数据手册i2c
  • ¥15 RPA正常跑,cmd输入cookies跑不出来
  • ¥15 求帮我调试一下freefem代码
  • ¥15 matlab代码解决,怎么运行
  • ¥15 R语言Rstudio突然无法启动
  • ¥15 关于#matlab#的问题:提取2个图像的变量作为另外一个图像像元的移动量,计算新的位置创建新的图像并提取第二个图像的变量到新的图像