最近Java 9に移行し、次のエラーが見つかりました。Hibernate Java 9構成ファイルのエラー
Initial SessionFactory creation failed.org.hibernate.internal.util.config.ConfigurationException:RESOURCE hibernate.cfg.xmlの行番号0と列0でアンマーシャリングを実行できません。メッセージ:ヌル
私の設定ファイルの内容は次のとおりです。
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
"http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<session-factory>
<property name="hibernate.connection.driver_class">com.microsoft.sqlserver.jdbc.SQLServerDriver</property>
<property name="hibernate.connection.url">jdbc:sqlserver://localhost</property>
<property name="hibernate.connection.databasename">ActiveDirectory</property>
<property name="hibernate.connection.integratedsecurity">true</property>
<property name="hibernate.dialect">org.hibernate.dialect.SQLServerDialect</property>
<property name="hibernate.enable_lazy_load_no_trans">true</property>
<property name="connection.pool_size">1000</property>
<property name="hibernate.c3p0.min_size">5</property>
<property name="hibernate.c3p0.max_size">1000</property>
<property name="hibernate.c3p0.timeout">300</property>
<property name="hibernate.c3p0.max_statements">1000</property>
<property name="hibernate.c3p0.idle_test_period">3000</property>
</session-factory>
</hibernate-configuration>
例外は私が.configure( "hibernate.cfg.xmlの")を実行したときにスローです。 私はそれにどのように対面すべきか考えていますか?
完全なスタックトレースで質問を更新してください:
:-)モジュールは、あなたがここにJavaの9 モジュールの詳細については、取得することができますJavaの9の新機能です。また、あなたは[this](https://stackoverflow.com/questions/32499073/error-in-configuring-hibernate-5-0-1-and-mysql)と[that](https: /stackoverflow.com/questions/32499073/error-in-configuring-hibernate-5-0-1-and-mysql)? – nullpointer