Skip to content

Instantly share code, notes, and snippets.

@gonzalad
Created November 10, 2011 08:38
Show Gist options
  • Save gonzalad/1354437 to your computer and use it in GitHub Desktop.
Save gonzalad/1354437 to your computer and use it in GitHub Desktop.
public class SpringProducer {
@Produces @SpringBean private ClientManager clientManager;
}
@Named
@RequestScoped
public class ClientAction {
@Inject
private ClientManager clientManager;
public void monAction() {
//blabla
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment