Skip to content

Instantly share code, notes, and snippets.

@johnament
Created December 31, 2010 13:59
Show Gist options
  • Save johnament/761027 to your computer and use it in GitHub Desktop.
Save johnament/761027 to your computer and use it in GitHub Desktop.
Should these two producers be the exact same?
@Produces
@ApplicationScoped
@Resource("/ConnectionFactory")
private ConnectionFactory cf;
vs.
@Resource("/ConnectionFactory")
private ConnectionFactory cf;
@Produces
@ApplicationScoped
public ConnectionFactory getConnectionFactory() {
return cf;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment