使用 @Resource 通过 Java EE 6 和 Glassfish 3.1 注入资源时遇到问题
我在尝试将 @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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
作为测试,您可以尝试“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.