使用 @Resource 通过 Java EE 6 和 Glassfish 3.1 注入资源时遇到问题

发布于 2024-11-16 13:14:53 字数 644 浏览 1 评论 0原文

我在尝试将 @Resource 注释与 Java EE 6 和 Glassfish 3.1(嵌入式)一起使用时遇到问题。我想查找 JNDI 数据源,因此我尝试让它与 Glassfish 中的默认数据源一起使用。在我的代码中,我有:

@Resource(lookup = "java:global/env/jdbc/__default")
DataSource dataSource;

它编译得很好。我正在使用 Maven + 建议此处

但是,当我部署 .war 时,我总是收到以下错误:

WARNING: Incorrect @Resource annotation class definition - missing lookup attribute
  symbol: FIELD
  location: javax.sql.DataSource ResourceLookup.dataSource

这是一个如此简单的示例,如果它是一个错误,我会感到非常惊讶。我一定是做错了什么。有什么想法吗?

I'm having trouble trying to use the @Resource annotation with Java EE 6 and Glassfish 3.1 (embedded). I want to look up a JNDI datasource, so I'm trying to get it working with the default datasource in Glassfish. In my code I have:

@Resource(lookup = "java:global/env/jdbc/__default")
DataSource dataSource;

It compiles fine. I'm using Maven + the advice here.

However, when I deploy my .war I always get the following error:

WARNING: Incorrect @Resource annotation class definition - missing lookup attribute
  symbol: FIELD
  location: javax.sql.DataSource ResourceLookup.dataSource

It's such a simple example that I'd be extremely surprised if it were a bug. I must be doing something wrong. Any ideas?

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

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

发布评论

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

评论(1

原野 2024-11-23 13:14:53

作为测试,您可以尝试“jdbc/__default”作为查找字符串吗?对于我的数据源,我使用我指定的 jndi 名称查找它们,始终使用模式“jdbc/MyDataSourceName”。

@Resource(lookup="jdbc/MyDataSourceName") 效果很好。从未尝试查找默认 ds,特别是不通过 java:global 命名空间。

As a test, can you try "jdbc/__default" as the lookup string? For my datasources I look them up using a jndi name I have specified, always with the pattern "jdbc/MyDataSourceName".

@Resource(lookup="jdbc/MyDataSourceName") works well. Never tried to look up the default ds, particularly not through the java:global namespace.

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