第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定

sessionFactory初始化過(guò)不去,無(wú)法往下執(zhí)行

public class MyHibernateSessionFactory {

private static SessionFactory sessionFactory;

private MyHibernateSessionFactory(){

}

public static SessionFactory getSessionFactory(){

if(sessionFactory==null){

Configuration config=new Configuration().configure();

ServiceRegistry serviceRegistry =new ServiceRegistryBuilder().applySettings(config.getProperties()).buildServiceRegistry();

sessionFactory=config.buildSessionFactory(serviceRegistry);

System.out.println();

return sessionFactory;

}else {

return sessionFactory;

}

}

}


正在回答

6 回答

同求這問(wèn)題!

0 回復(fù) 有任何疑惑可以回復(fù)我~

我現(xiàn)在也是遇到這個(gè)問(wèn)題 ?咋弄

0 回復(fù) 有任何疑惑可以回復(fù)我~

java.lang.NullPointerException

at org.hibernate.engine.jdbc.internal.JdbcServicesImpl.configure(JdbcServicesImpl.java:207)

at org.hibernate.service.internal.StandardServiceRegistryImpl.configureService(StandardServiceRegistryImpl.java:75)

at org.hibernate.service.internal.AbstractServiceRegistryImpl.initializeService(AbstractServiceRegistryImpl.java:159)

at org.hibernate.service.internal.AbstractServiceRegistryImpl.getService(AbstractServiceRegistryImpl.java:131)

at org.hibernate.cfg.Configuration.buildTypeRegistrations(Configuration.java:1818)

at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1776)

at db.MyHibernateSessionFactory.getSessionFactory(MyHibernateSessionFactory.java:21)


這是空指針異常。MyHibernateSessionFactory.java:21行 是哪一句?

0 回復(fù) 有任何疑惑可以回復(fù)我~
#1

慕九州0120569 提問(wèn)者

sessionFactory=config.buildSessionFactory(serviceRegistry);
2015-12-14 回復(fù) 有任何疑惑可以回復(fù)我~
#2

慕九州0120569 提問(wèn)者

sessionFactory初始化時(shí),有問(wèn)題
2015-12-14 回復(fù) 有任何疑惑可以回復(fù)我~
#3

執(zhí)念_00 回復(fù) 慕九州0120569 提問(wèn)者

<property name="connection.url">jdbc:oracle:thin:@localhost:1521:orcl</property> 里面orcl是你的數(shù)據(jù)庫(kù)名稱(chēng)??
2015-12-14 回復(fù) 有任何疑惑可以回復(fù)我~
#4

慕九州0120569 提問(wèn)者 回復(fù) 執(zhí)念_00

是的,是數(shù)據(jù)庫(kù)名
2015-12-14 回復(fù) 有任何疑惑可以回復(fù)我~
#5

慕九州0120569 提問(wèn)者 回復(fù) 執(zhí)念_00

是數(shù)據(jù)庫(kù)名
2015-12-14 回復(fù) 有任何疑惑可以回復(fù)我~
查看2條回復(fù)

2015-12-14 11:03:17 org.hibernate.annotations.common.Version <clinit>

INFO: HCANN000001: Hibernate Commons Annotations {4.0.2.Final}

2015-12-14 11:03:18 org.hibernate.Version logVersion

INFO: HHH000412: Hibernate Core {4.2.4.Final}

2015-12-14 11:03:18 org.hibernate.cfg.Environment <clinit>

INFO: HHH000206: hibernate.properties not found

2015-12-14 11:03:18 org.hibernate.cfg.Environment buildBytecodeProvider

INFO: HHH000021: Bytecode provider name : javassist

2015-12-14 11:03:18 org.hibernate.cfg.Configuration configure

INFO: HHH000043: Configuring from resource: /hibernate.cfg.xml

2015-12-14 11:03:18 org.hibernate.cfg.Configuration getConfigurationInputStream

INFO: HHH000040: Configuration resource: /hibernate.cfg.xml

2015-12-14 11:03:18 org.hibernate.cfg.Configuration addResource

INFO: HHH000221: Reading mappings from resource: entity/Appliance.hbm.xml

2015-12-14 11:03:18 org.hibernate.internal.util.xml.DTDEntityResolver resolveEntity

WARN: HHH000223: Recognized obsolete hibernate namespace http://hibernate.sourceforge.net/. Use namespace http://www.hibernate.org/dtd/ instead. Refer to Hibernate 3.6 Migration Guide!

2015-12-14 11:03:18 org.hibernate.cfg.Configuration addResource

INFO: HHH000221: Reading mappings from resource: entity/Users.hbm.xml

2015-12-14 11:03:18 org.hibernate.internal.util.xml.DTDEntityResolver resolveEntity

WARN: HHH000223: Recognized obsolete hibernate namespace http://hibernate.sourceforge.net/. Use namespace http://www.hibernate.org/dtd/ instead. Refer to Hibernate 3.6 Migration Guide!

2015-12-14 11:03:18 org.hibernate.cfg.Configuration doConfigure

INFO: HHH000041: Configured SessionFactory: null

2015-12-14 11:03:18 org.hibernate.service.jdbc.connections.internal.DriverManagerConnectionProviderImpl configure

INFO: HHH000402: Using Hibernate built-in connection pool (not for production use!)

2015-12-14 11:03:18 org.hibernate.service.jdbc.connections.internal.DriverManagerConnectionProviderImpl configure

INFO: HHH000115: Hibernate connection pool size: 20

2015-12-14 11:03:18 org.hibernate.service.jdbc.connections.internal.DriverManagerConnectionProviderImpl configure

INFO: HHH000006: Autocommit mode: false

2015-12-14 11:03:18 org.hibernate.service.jdbc.connections.internal.DriverManagerConnectionProviderImpl configure

INFO: HHH000401: using driver [oracle.jdbc.driver.OracleDriver] at URL [jdbc:oracle:thin:@localhost:1521:orcl]

2015-12-14 11:03:18 org.hibernate.service.jdbc.connections.internal.DriverManagerConnectionProviderImpl configure

INFO: HHH000046: Connection properties: {user=system, password=****}

2015-12-14 11:03:18 org.hibernate.engine.jdbc.internal.JdbcServicesImpl configure

WARN: HHH000341: Could not obtain connection metadata : 不支持的特性

2015-12-14 11:03:18 org.hibernate.engine.jdbc.internal.LobCreatorBuilder useContextualLobCreation

INFO: HHH000422: Disabling contextual LOB creation as connection was null

java.lang.NullPointerException

at org.hibernate.engine.jdbc.internal.JdbcServicesImpl.configure(JdbcServicesImpl.java:207)

at org.hibernate.service.internal.StandardServiceRegistryImpl.configureService(StandardServiceRegistryImpl.java:75)

at org.hibernate.service.internal.AbstractServiceRegistryImpl.initializeService(AbstractServiceRegistryImpl.java:159)

at org.hibernate.service.internal.AbstractServiceRegistryImpl.getService(AbstractServiceRegistryImpl.java:131)

at org.hibernate.cfg.Configuration.buildTypeRegistrations(Configuration.java:1818)

at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1776)

at db.MyHibernateSessionFactory.getSessionFactory(MyHibernateSessionFactory.java:21)

at service.impl.UsersDAOImpl.userLong(UsersDAOImpl.java:21)

at server.impl.TestUsers.testUserLogin(TestUsers.java:17)

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)

at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)

at java.lang.reflect.Method.invoke(Method.java:597)

at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:45)

at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:15)

at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:42)

at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:20)

at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:263)

at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:68)

at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:47)

at org.junit.runners.ParentRunner$3.run(ParentRunner.java:231)

at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:60)

at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:229)

at org.junit.runners.ParentRunner.access$000(ParentRunner.java:50)

at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:222)

at org.junit.runners.ParentRunner.run(ParentRunner.java:300)

at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:50)

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)

false


0 回復(fù) 有任何疑惑可以回復(fù)我~

報(bào)錯(cuò)信息呢?

0 回復(fù) 有任何疑惑可以回復(fù)我~
#1

慕九州0120569 提問(wèn)者

下面是報(bào)錯(cuò)信息
2015-12-14 回復(fù) 有任何疑惑可以回復(fù)我~

看看你的配置文件里面有沒(méi)有問(wèn)題

0 回復(fù) 有任何疑惑可以回復(fù)我~
#1

慕九州0120569 提問(wèn)者

<property name="dialect">org.hibernate.dialect.Oracle9Dialect</property> <property name="connection.url">jdbc:oracle:thin:@localhost:1521:orcl</property> <property name="connection.username">system</property> <property name="connection.password">123456</property>
2015-12-14 回復(fù) 有任何疑惑可以回復(fù)我~
#2

慕九州0120569 提問(wèn)者

<property name="connection.driver_class">oracle.jdbc.driver.OracleDriver</property> <property name="show_sql">true</property> <property name="format_sql">true</property> <property name="hbm2ddl.auto">update</property> <property name="hibernate.current_session_context_class">thread</property>
2015-12-14 回復(fù) 有任何疑惑可以回復(fù)我~

舉報(bào)

0/150
提交
取消

sessionFactory初始化過(guò)不去,無(wú)法往下執(zhí)行

我要回答 關(guān)注問(wèn)題
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢(xún)優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)