JPA:找不到TransactionManager

时间:2011-11-08 11:27:03

标签: hibernate jpa jpa-2.0 eclipselink

我在JSF 2项目中使用JPA 2,所以我在GlassFish v3中配置我的数据源,一切都很好,但如果我尝试在Hibernate Tools中测试JPA查询,它会给我跟随错误:

Sessionfactory error:Could not locate TransactionManager

这是我的persistence.xml:

<?xml version="1.0" encoding="UTF-8"?>
<persistence version="2.0" xmlns="http://java.sun.com/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd">
    <persistence-unit name="SuaParte" transaction-type="JTA">
        <jta-data-source>jdbc/suaparte_ds</jta-data-source>
        <class>entity.Area</class>
        <properties>
            <property name="eclipselink.logging.level" value="FINE"/>
            <property name="hibernate.transaction.manager_lookup_class" value="org.hibernate.transaction.JBossTransactionManagerLookup"/>
        </properties>


    </persistence-unit>
</persistence>

我在Eclipse JSF 2项目中使用EclipseLink 2.3(Indigo)和JPA 2。

修改 关注@fonini方法,我的hibernate.properties:

hibernate.connection.username=<filled>
hibernate.connection.password=<filled>
hibernate.connection.driver_class=com.mysql.jdbc.Driver
hibernate.dialect=org.hibernate.dialect.MySQLDialect
hibernate.connection.url=<filled>
hibernate.connection.provider_class=org.hibernate.connection.DriverManagerConnectionProvider
hibernate.datasource=jdbc/suaparte_ds
hibernate.transaction.manager_lookup_class=org.hibernate.transaction.JBossTransactionManagerLookup

但是现在又给了我一个错误: error

我是否必须更改实体中的id generator

    @Entity
    @Table(name="product")
    public class Product implements Serializable {
        private static final long serialVersionUID = 1L;

        @Id
        @GeneratedValue(strategy=GenerationType.SEQUENCE)
        private Integer id;

        @Size(max=150, message="150 caracteres no máximo")
        private String description;

        // getters and setter
}

1 个答案:

答案 0 :(得分:0)

由于Hibernate Tools在Eclipse中运行,因此它无法访问特定于应用程序服务器的数据源。

您可以使用属性文件来设置将覆盖数据源的连接。

这是一个示例文件:

hibernate.connection.username=user
hibernate.connection.password=pass
hibernate.connection.driver_class=org.PostgreSQL.Driver
hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect
hibernate.connection.url=jdbc:postgresql...

hibernate.connection.provider_class=org.hibernate.connection.DriverManagerConnectionProvider
hibernate.datasource=
hibernate.transaction.manager_lookup_class=