Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
587 views
in Technique[技术] by (71.8m points)

dependency injection - Trouble injecting resources with Java EE 6 and Glassfish 3.1 using @Resource

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?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...