EJB 实体 bean JAR 和 JAR轻松休息

发布于 2024-11-08 23:17:34 字数 1447 浏览 3 评论 0原文

我无法让我的实体 bean 正确连接到 MySQL。这是我的设置:

JBOSS:6

乌班图:11.04

EJB:3.1

我当前正在尝试通过对 EAR 文件根目录中的 JARed 会话 bean 进行 JNDI 远程调用来访问实体 bean。

我的实体 bean 正确映射到我的数据库并在一个 EAR 文件中工作,但是我想在同一容器中的另一个 EAR 文件中使用相同的实体 bean,因此我已 JARed 我的实体 bean,并使用我的构建将它们拉入我的第二个 EAR 文件中脚本。我正在提取与第一个 EAR 文件完全相同的 persistance.xml 文件,它指向部署目录根目录中的相同数据源 XML。我可以定义我的持久性上下文并访问我的实体 bean,不会出现错误,并且我可以毫无例外地编译和部署我的 JBoss 服务器。但是,当我在部署容器后尝试访问实体 bean 时,出现此错误:

java.lang.IllegalArgumentException: org.hibernate.hql.ast.QuerySyntaxException: User is not mapped [SELECT u FROM User u WHERE u.accountId=:accountId]

这是我正在使用的查询:

List<User> users = entityManager.createQuery("SELECT u FROM User u WHERE u.accountId=:accountId")
        .setParameter("accountId", accountId)
        .getResultList(); 

谁能告诉我是否:

  1. JARing 实体 Bean 存在问题
  2. RESTeasy 是否需要一些特殊的配置来处理实体 bean
  3. 是否可以使用 JARed 实体 bean
  4. 如果我使用同一容器中同一实体 Bean 的两个单独实例访问同一数据源,是否会出现配置冲突

提前感谢您对此的任何帮助。我真的被困住了。

添加(20/05/2011):

所以我现在已经将我的实体和会话 bean 合并到一个 jar 中,并更改了 persistence.xml,以便包括下面 Nayan 建议的自动检测属性:

<property name="hibernate.archive.autodetection" value="class"/>

但无济于事。我已在 application.xml 中注册了 JAR,并将 JAR 添加到了构建脚本中的类路径中。

将 JAR 文件放入部署目录的根目录并尝试从那里访问它是否有意义?

I am having trouble getting my entity beans to connect correctly to MySQL. Here's my set up:

JBOSS: 6

UBUNTU: 11.04

EJB: 3.1

I am currently trying to access entity beans via a JNDI remote call to a JARed session bean in the root of my EAR file.

My Entity beans map correctly to my database and work in one EAR file however I want to use the same entity beans in another EAR file in the same container so I have JARed my entity beans and I pull them into my second EAR file using my build script. I am pulling the exact same persistance.xml file as my first EAR file and it points to the same data source XML in the root of my deploy directory. I can define my persistence context and access my entity beans without error and I can compile and deploy my JBoss server without any exceptions. However I get this error when I try to access the entity beans after the container has deployed:

java.lang.IllegalArgumentException: org.hibernate.hql.ast.QuerySyntaxException: User is not mapped [SELECT u FROM User u WHERE u.accountId=:accountId]

This is the query I am using:

List<User> users = entityManager.createQuery("SELECT u FROM User u WHERE u.accountId=:accountId")
        .setParameter("accountId", accountId)
        .getResultList(); 

Can anyone tell me if:

  1. there is an issue with JARing entity beans
  2. does RESTeasy need some special config to deal with entity beans
  3. is it even possible to use JARed entity beans
  4. could there be a config conflict if I am accessing the same datasource using two separate instances of the same entity beans in the same container

Thanks in advance for any help with this. I am really stuck.

ADDED (20/05/2011):

So I have now consolidated my entity and session beans into one jar and have altered the persistence.xml so include the auto detect property suggested by Nayan below:

<property name="hibernate.archive.autodetection" value="class"/>

but to no avail. I have the JAR registered in my application.xml and have added the JAR to the classpath in my build script.

Would it make any sense to put the JAR file into the root of the deploy directory and try to access it from there?

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

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

发布评论

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

评论(2

懒猫 2024-11-15 23:17:34

在您的EAR中,似乎无法识别jar中打包的实体,还要检查jar是否存在于类路径中。

尝试在 persistence.xml 中添加

否则,尝试包含持久单元的类。

<persistence-unit name="unitName">
    <class>com.package.User</class>
    ...
 </persistence-unit>

In your EAR, it seems that the entities packaged in jar aren't recognized, also check whether jar is present in classpath.

Try adding <property name="hibernate.archive.autodetection" value="class"/> in persistence.xml.

Else, try including class for persistent unit.

<persistence-unit name="unitName">
    <class>com.package.User</class>
    ...
 </persistence-unit>
悲欢浪云 2024-11-15 23:17:34

问题出在我的 persistence.xml 文件的位置上。我将 persistence.xml 文件放在 JAR 中,其中包含会话 bean,而不是需要它的实体 bean。问题解决了!

The issue was with the location of my persistence.xml file. I have the persistence.xml file in a JAR with my sessions beans not with my entity beans where it was needed. Problem solved!

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