java - JBoss Hibernate Unable to locate persister error -
i've run bit of trouble again after fixing previous issue . tried many common fixes none seems working me. here relevant files project: hibernate.cfg.xml <?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> <!-- database connection settings --> <property name="connection.driver_class">com.mysql.jdbc.driver</property> <property name="connection.url">jdbc:mysql://localhost:3306/accountdb</property> <property name="connection.username">root</property> <property name="connection.password">pass</property> <!-- hibernate properties --> <property name="show_sql">true</property...