Java 找不到映射(资源)

Java 找不到映射(资源),java,mysql,hibernate,hibernate-5.x,Java,Mysql,Hibernate,Hibernate 5.x,Hibernate5,MySQL服务器 AccountMap account = new AccountMap(); Configuration configuration = new Configuration(); configuration.addClass(AccountMap.class); configuration.setProperty("hibernate.connection.driver_class", "com.mysql.jdbc.D

Hibernate5,MySQL服务器

AccountMap account = new AccountMap();

Configuration configuration = new Configuration();

        configuration.addClass(AccountMap.class);
        configuration.setProperty("hibernate.connection.driver_class", "com.mysql.jdbc.Driver");
        configuration.setProperty("hibernate.connection.url", "jdbc:mysql://localhost:3306/test");
        configuration.setProperty("hibernate.connection.username", "root");
        configuration.setProperty("hibernate.connection.password", "");
        configuration.setProperty("hibernate.show_sql", "com.mysql.jdbc.Driver");
        configuration.setProperty("hibernate.dialect", "org.hibernate.dialect.MySQLDialect");

        StandardServiceRegistryBuilder builder = new StandardServiceRegistryBuilder().
        applySettings(configuration.getProperties());
        SessionFactory factory = configuration.buildSessionFactory(builder.build());
        Session session = factory.openSession();

        session.save(account);

        session.getTransaction().commit();
        session.close();
        factory.close();
会计地图:

package Mapping;

import java.sql.Date;

import javax.persistence.*;

@Entity
@Table(name="accounts")
public class AccountMap {

    @Id
    @Column(name="id")
    private int id;

    @Column(name="email")
    private String email;

    @Column(name="alias")
    private String alias;

    @Column(name="password")
    private String password;

    @Column(name="created_at")
    @org.hibernate.annotations.Type( type="DateType" )
    private Date createdAt;

    @Column(name="updated_at")
    @org.hibernate.annotations.Type( type="DateType" )
    private Date updatedAt;

    @Column(name="currency")
    private int currency;

    @Column(name="alternative_currency")
    private int alternativeCurrency;

    @Column(name="level")
    private int level;

    @Column(name="exp")
    private int exp;

    @Column(name="activation_key")
    private String activationKey;

    @Column(name="recovery_key")
    private String recoveryKey;

    @Column(name="recovery_time")
    private Date recoveryTime;
}
错误:

org.hibernate.boot.MappingNotFoundException:映射(资源)未找到 找到:Mapping/AccountMap.hbm.xml: 来源(Mapping/AccountMap.hbm.xml)


我使用Anotation而不是xml文件。

使用
addAnnotatedClass
而不是
addClass
:-

configuration.addAnnotatedClass(AccountMap.class);
As
Configuration.addClass()
需要一个
hbm.xml