为了账号安全,请及时绑定邮箱和手机立即绑定

NamingException异常是什么情况?

[DEBUG] 2016-11-17 02:11:27 - JNDI lookup for name [jdbc.username] threw NamingException with message: Name [jdbc.username] is not bound in this Context. Unable to find [jdbc.username].. Returning null.

[DEBUG] 2016-11-17 02:11:27 - JNDI lookup for name [jdbc.password] threw NamingException with message: Name [jdbc.password] is not bound in this Context. Unable to find [jdbc.password].. Returning null.


正在回答

1 回答

你有没有配置正确 jdbc.properties,或者路径没找到

jdbc.properties

jdbc.driverClass=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://127.0.0.1:3306/ssh
jdbc.username=root
jdbc.password=root
<!-- 引入外部的属性文件 -->
    <context:property-placeholder location="classpath:jdbc.properties"/>
    
    <!-- 配置c3p0 连接池 -->
    <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">        
        <property name="driverClass" value="${jdbc.driverClass}"/>        
        <property name="jdbcUrl" value="${jdbc.url}"/>        
        <property name="user" value="${jdbc.username}"/>        
        <property name="password" value="${jdbc.password}"/>        
    </bean>


0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

NamingException异常是什么情况?

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信