Skip to content

Instantly share code, notes, and snippets.

@makensi
Created April 22, 2013 07:07
Show Gist options
  • Save makensi/5432964 to your computer and use it in GitHub Desktop.
Save makensi/5432964 to your computer and use it in GitHub Desktop.
public class RoutingDataSourceImpl extends AbstractRoutingDataSource {
@Autowired
private User user;
public void setUser(User user) {
this.user = user;
}
@Override
protected Object determineCurrentLookupKey() {
return user.getEnvironment();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment