带有 DataNucleus 的简单本地 JPA2HBase 应用程序

发布于 2024-12-02 09:16:25 字数 5543 浏览 3 评论 0原文

我想构建一个简约的本地应用程序,通过 JPA2 读取/写入 HBase,无需 orm.xml 且无需 maven2。 因此,我将 Eclipse 与 DataNucleus 插件一起使用,该插件的增强器已为项目启用。

灵感来自 http://matthiaswessendorf.wordpress。 com/2010/03/17/apache-hadoop-hbase-plays-nice-with-jpa/ 我得到了以下实体:

@Entity
@Table(name="account_table")
public class Account
{

    @Id
    @GeneratedValue(strategy=GenerationType.IDENTITY)
    private String id;

    String firstName = null;
    String lastName = null;
    int level = 0;
    @Embedded
    Login login = null;

    public Account() {      }

    public Account(String firstName, String lastName, int level, Login login) {
        super();
        this.firstName = firstName;
        this.lastName = lastName;
        this.level = level;
        this.login = login;
    }

@Embeddable
public class Login
{

    private String login = null;
    private String password = null;

    public Login() {
        // TODO Auto-generated constructor stub
    }

    public Login(String login, String password) {
        super();
        this.login = login;
        this.password = password;
    }
 }

src/META-INF/persistence.xml

<persistence
    xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd"
    version="1.0">
    −
    <persistence-unit name="hbase-addressbook"
        transaction-type="RESOURCE_LOCAL">
        <class>de.syrtec.jpa2hbase.entities.Login</class>
        <class>de.syrtec.jpa2hbase.entities.Account</class>

        <properties>
            <property name="datanucleus.ConnectionURL" value="hbase" />
            <property name="datanucleus.ConnectionUserName" value="" />
            <property name="datanucleus.ConnectionPassword" value="" />
            <property name="datanucleus.autoCreateSchema" value="true" />
            <property name="datanucleus.validateTables" value="false" />
            <property name="datanucleus.Optimistic" value="false" />
            <property name="datanucleus.validateConstraints" value="false" />
        </properties>
    </persistence-unit>
</persistence>

DAO:

public class TestDAO {
    public static void main(String[] args) {
        EntityManagerFactory emf = Persistence.createEntityManagerFactory("hbase-addressbook");
        EntityManager em = emf.createEntityManager();
        EntityTransaction tx = null;

        Account a1 = new Account("myPre", "mySur", 1, new Login("a", "b"));

        tx = em.getTransaction();
        tx.begin(); 
            em.persist(a1);
        tx.commit();
    }
}

但是当执行测试 DAO 的第一行时.....我

    EntityManagerFactory emf = Persistence.createEntityManagerFactory("hbase-addressbook");

得到:

11/09/01 06:57:05 INFO DataNucleus.MetaData: Class "de.syrtec.jpa2hbase.entities.Account" has been specified with JPA annotations so using those.
11/09/01 06:57:05 INFO DataNucleus.MetaData: Class "de.syrtec.jpa2hbase.entities.Login" has been specified with JPA annotations so using those.
Exception in thread "main" javax.persistence.PersistenceException: Explicit persistence provider error(s) occurred for "hbase-addressbook" after trying the following discovered implementations: org.datanucleus.api.jpa.PersistenceProviderImpl from provider: org.datanucleus.api.jpa.PersistenceProviderImpl
    at javax.persistence.Persistence.createPersistenceException(Persistence.java:242)
    at javax.persistence.Persistence.createEntityManagerFactory(Persistence.java:184)
    at javax.persistence.Persistence.createEntityManagerFactory(Persistence.java:70)
    at de.syrtec.jpa2hbase.start.TestDAO.main(TestDAO.java:15)
Caused by: org.datanucleus.exceptions.NucleusUserException: Errors were encountered when loading the MetaData for the persistence-unit "hbase-addressbook". See the nested exceptions for details
    at org.datanucleus.metadata.MetaDataManager.loadPersistenceUnit(MetaDataManager.java:879)
    at org.datanucleus.api.jpa.JPAEntityManagerFactory.initialiseNucleusContext(JPAEntityManagerFactory.java:745)
    at org.datanucleus.api.jpa.JPAEntityManagerFactory.<init>(JPAEntityManagerFactory.java:422)
    at org.datanucleus.api.jpa.PersistenceProviderImpl.createEntityManagerFactory(PersistenceProviderImpl.java:91)
    at javax.persistence.Persistence.createEntityManagerFactory(Persistence.java:150)
    ... 2 more
Caused by: org.datanucleus.exceptions.ClassNotResolvedException: Class "−

        de.syrtec.jpa2hbase.entities.Login" was not found in the CLASSPATH. Please check your specification and your CLASSPATH.
    at org.datanucleus.JDOClassLoaderResolver.classForName(JDOClassLoaderResolver.java:247)
    at org.datanucleus.JDOClassLoaderResolver.classForName(JDOClassLoaderResolver.java:412)
    at org.datanucleus.metadata.MetaDataManager.loadPersistenceUnit(MetaDataManager.java:859)
    ... 6 more

在运行 DAO 之前,我成功地通过 datanucleus 触发了类增强:

DataNucleus Enhancer (version 3.0.0.release) : Enhancement of classes
DataNucleus Enhancer completed with success for 2 classes. Timings : input=623 ms, enhance=101 ms, total=724 ms. Consult the log for full details

虽然我不明白尽管激活了项目的自动增强,但增强不会自动触发(参考日志)。

有人知道为什么找不到我的实体吗?

I want to build a minimalistic local app that reads/writes HBase via JPA2 without orm.xml and without maven2.
Thereby I use Eclipse with the DataNucleus Plugin whose Enhancer is enabled for the project.

Inspired by
http://matthiaswessendorf.wordpress.com/2010/03/17/apache-hadoop-hbase-plays-nice-with-jpa/
I got the following Entities:

@Entity
@Table(name="account_table")
public class Account
{

    @Id
    @GeneratedValue(strategy=GenerationType.IDENTITY)
    private String id;

    String firstName = null;
    String lastName = null;
    int level = 0;
    @Embedded
    Login login = null;

    public Account() {      }

    public Account(String firstName, String lastName, int level, Login login) {
        super();
        this.firstName = firstName;
        this.lastName = lastName;
        this.level = level;
        this.login = login;
    }

and

@Embeddable
public class Login
{

    private String login = null;
    private String password = null;

    public Login() {
        // TODO Auto-generated constructor stub
    }

    public Login(String login, String password) {
        super();
        this.login = login;
        this.password = password;
    }
 }

The src/META-INF/persistence.xml

<persistence
    xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd"
    version="1.0">
    −
    <persistence-unit name="hbase-addressbook"
        transaction-type="RESOURCE_LOCAL">
        <class>de.syrtec.jpa2hbase.entities.Login</class>
        <class>de.syrtec.jpa2hbase.entities.Account</class>

        <properties>
            <property name="datanucleus.ConnectionURL" value="hbase" />
            <property name="datanucleus.ConnectionUserName" value="" />
            <property name="datanucleus.ConnectionPassword" value="" />
            <property name="datanucleus.autoCreateSchema" value="true" />
            <property name="datanucleus.validateTables" value="false" />
            <property name="datanucleus.Optimistic" value="false" />
            <property name="datanucleus.validateConstraints" value="false" />
        </properties>
    </persistence-unit>
</persistence>

the DAO:

public class TestDAO {
    public static void main(String[] args) {
        EntityManagerFactory emf = Persistence.createEntityManagerFactory("hbase-addressbook");
        EntityManager em = emf.createEntityManager();
        EntityTransaction tx = null;

        Account a1 = new Account("myPre", "mySur", 1, new Login("a", "b"));

        tx = em.getTransaction();
        tx.begin(); 
            em.persist(a1);
        tx.commit();
    }
}

But when first line of the test DAO is executed...

    EntityManagerFactory emf = Persistence.createEntityManagerFactory("hbase-addressbook");

..I get:

11/09/01 06:57:05 INFO DataNucleus.MetaData: Class "de.syrtec.jpa2hbase.entities.Account" has been specified with JPA annotations so using those.
11/09/01 06:57:05 INFO DataNucleus.MetaData: Class "de.syrtec.jpa2hbase.entities.Login" has been specified with JPA annotations so using those.
Exception in thread "main" javax.persistence.PersistenceException: Explicit persistence provider error(s) occurred for "hbase-addressbook" after trying the following discovered implementations: org.datanucleus.api.jpa.PersistenceProviderImpl from provider: org.datanucleus.api.jpa.PersistenceProviderImpl
    at javax.persistence.Persistence.createPersistenceException(Persistence.java:242)
    at javax.persistence.Persistence.createEntityManagerFactory(Persistence.java:184)
    at javax.persistence.Persistence.createEntityManagerFactory(Persistence.java:70)
    at de.syrtec.jpa2hbase.start.TestDAO.main(TestDAO.java:15)
Caused by: org.datanucleus.exceptions.NucleusUserException: Errors were encountered when loading the MetaData for the persistence-unit "hbase-addressbook". See the nested exceptions for details
    at org.datanucleus.metadata.MetaDataManager.loadPersistenceUnit(MetaDataManager.java:879)
    at org.datanucleus.api.jpa.JPAEntityManagerFactory.initialiseNucleusContext(JPAEntityManagerFactory.java:745)
    at org.datanucleus.api.jpa.JPAEntityManagerFactory.<init>(JPAEntityManagerFactory.java:422)
    at org.datanucleus.api.jpa.PersistenceProviderImpl.createEntityManagerFactory(PersistenceProviderImpl.java:91)
    at javax.persistence.Persistence.createEntityManagerFactory(Persistence.java:150)
    ... 2 more
Caused by: org.datanucleus.exceptions.ClassNotResolvedException: Class "−

        de.syrtec.jpa2hbase.entities.Login" was not found in the CLASSPATH. Please check your specification and your CLASSPATH.
    at org.datanucleus.JDOClassLoaderResolver.classForName(JDOClassLoaderResolver.java:247)
    at org.datanucleus.JDOClassLoaderResolver.classForName(JDOClassLoaderResolver.java:412)
    at org.datanucleus.metadata.MetaDataManager.loadPersistenceUnit(MetaDataManager.java:859)
    ... 6 more

Before I ran the DAO I triggered class enhancing by datanucleus succesfully:

DataNucleus Enhancer (version 3.0.0.release) : Enhancement of classes
DataNucleus Enhancer completed with success for 2 classes. Timings : input=623 ms, enhance=101 ms, total=724 ms. Consult the log for full details

Although I don't understand that enhancing isn't triggered automatically (referring to the logs) despite of having auto-enhancement for the project activated..

Does anybody know why my entities aren't found?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

站稳脚跟 2024-12-09 09:16:25

persistence.xml 中的减号?

And that minus sign in persistence.xml ?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文