Skip to content

Instantly share code, notes, and snippets.

@nschlimm
Created August 5, 2011 16:12
Show Gist options
  • Save nschlimm/1127882 to your computer and use it in GitHub Desktop.
Save nschlimm/1127882 to your computer and use it in GitHub Desktop.
User Credentials example
import org.springframework.context.annotation.Scope;
@Scope("session")
public class UserCredentials {
...
}
import org.springframework.context.annotation.Scope;
@Scope("singleton")
public class ServiceLocator {
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment