Skip to content

Instantly share code, notes, and snippets.

@atesibrahim
Created July 19, 2022 14:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save atesibrahim/18746611b8c8d745f65dae8d59dee865 to your computer and use it in GitHub Desktop.
Save atesibrahim/18746611b8c8d745f65dae8d59dee865 to your computer and use it in GitHub Desktop.
@Configuration
public class CouchbaseConfig extends AbstractCouchbaseConfiguration {
@Override
public String getConnectionString() {
return "127.0.0.1";
}
@Override
public String getUserName() {
return "admin";
}
@Override
public String getPassword() {
return "password";
}
@Override
public String getBucketName() {
return "book";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment