Hibernate出现javax.naming.NoInitialContextException 错误的解决办法

异常信息:
08:02:56,329  WARN SessionFactoryObjectFactory:123 - Could not unbind factory from JNDI
javax.naming.NoInitialContextException: Need to specify class name in environment or system property, or as an applet parameter, or in an application resource file:  java.naming.factory.initial
    at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:645)
    at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:288)
    at javax.naming.InitialContext.getURLOrDefaultInitCtx(InitialContext.java:325)
    at javax.naming.InitialContext.unbind(InitialContext.java:416)
    at org.hibernate.impl.SessionFactoryObjectFactory.removeInstance(SessionFactoryObjectFactory.java:116)
    at org.hibernate.impl.SessionFactoryImpl.close(SessionFactoryImpl.java:806)
    at org.hibernate.test.junit.UserTest.tearDown(UserTest.java:43)
    at junit.framework.TestCase.runBare(TestCase.java:130)
    at junit.framework.TestResult$1.protect(TestResult.java:106)
    at junit.framework.TestResult.runProtected(TestResult.java:124)
    at junit.framework.TestResult.run(TestResult.java:109)
    at junit.framework.TestCase.run(TestCase.java:118)
    at junit.framework.TestSuite.runTest(TestSuite.java:208)
    at junit.framework.TestSuite.run(TestSuite.java:203)
    at org.eclipse.jdt.internal.junit.runner.junit3.JUnit3TestReference.run(JUnit3TestReference.java:130)
    at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:467)
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683)
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390)
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:197)


很奇怪我的项目并没有使用到JNDI,但是却抛出JNDI相关的异常信息。
原来是Hibernate的配置文件hibernate.cfg.xml有问题
<hibernate-configuration>
    <session-factory name="foo">
        <property name="hibernate.connection.url">jdbc:oracle:thin:@10.240.144.25:1521:MES</property>
        <property name="hibernate.connection.driver_class">oracle.jdbc.driver.OracleDriver</property>
        <property name="hibernate.connection.username">*****</property>
        <property name="hibernate.connection.password">*****</property>
        <property name="dialect">org.hibernate.dialect.OracleDialect</property>
        <property name="show_sql">true</property>
        
        <mapping resource="org/hibernate/test/User.hbm.xml"/>
        
    </session-factory>
</hibernate-configuration>


原因:<seesion-factory>元素多了属性 name.
这样,hibernate会试图把这个sessionfacotry注册到JNDI中去

解决:去了name属性


`javax.naming.NoInitialContextException`是一个异常类,它属于Java的命名和目录服务(JNDI)API的一部分。当尝试访问命名服务,但是没有正确地配置初始上下文环境时,就可能抛出这个异常。具体来说,这个异常提示需要在环境变量或系统属性中指定类名。 这个异常通常发生在以下情况: 1. 在使用JNDI之前,没有配置初始上下文环境(InitialContext),即没有指定JNDI提供者、环境属性、工厂类等。 2. 程序中缺少必要的JNDI服务实现库,或者在系统属性中没有正确指定JNDI服务的类名。 要解决这个异常,你需要检查代码中与JNDI相关的配置部分,确保提供了所有必要的环境属性,例如: - `java.naming.factory.initial`:指定JNDI提供者初始化时使用的工厂类的类名。 - `java.naming.provider.url`:指定JNDI服务提供者的位置。 - 其他环境属性,如认证信息等。 例如,如果你在Java代码中使用JNDI查找对象,你可能需要先创建一个`InitialContext`对象,并且提供必要的环境参数。 ```java Properties props = new Properties(); props.put("java.naming.factory.initial", "com.sun.jndi.cosnaming.CNCtxFactory"); props.put("java.naming.provider.url", "iiop://localhost:1050"); InitialContext ctx = new InitialContext(props); ``` 在这个例子中,`props`对象被用来设置初始化环境,指定了工厂类和JNDI服务的位置。然后,使用这些属性创建了一个`InitialContext`实例。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值