このチュートリアルに従いました。
ここに私のフォルダ構造があります:
App.Java を実行すると、次のようになります。
Initial SessionFactory creation failed.org.hibernate.MappingNotFoundException: resource: com/mkyong/user/DBUser.hbm.xml not found
ただし、ご覧のとおり、そのファイルがあります。ファイルを下に置くと
src/main/java/com/mykong/user/DBUser.hbm.xml
私はまだこのエラーが発生しています。
この例を機能させるにはどうすればよいですか?
ありがとうございました。
編集:
hibernate.cfg.xml
<hibernate-configuration>
<session-factory>
<property name="connection.url">jdbc:mysql://localhost:3306/sampleapplication</property>
<property name="connection.driver_class">com.mysql.jdbc.Driver</property>
<property name="connection.username">root</property>
<property name="connection.password">MYPASSWORDHERE</property>
<property name="show_sql">true</property>
<mapping resource="com/mkyong/user/DBUser.hbm.xml"></mapping>
</session-factory>
</hibernate-configuration>