Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changed Neo4jClient to read login parameters from a file #1

Closed
wants to merge 12 commits into from

Conversation

Ishar-Menon
Copy link

Neo4jClient now reads login properties from file db.properties
Create this file in the same directory as the Neo4jClient
the structure should look something like:
URL_PROPERTY_DEFAULT = bolt://localhost:7687
USER_PROPERTY_DEFAULT = neo4j
PASSWORD_PROPERTY_DEFAULT = 1234
Enter the values of these properties as per the your connection and database

@@ -36,13 +36,13 @@

public class Neo4jClient extends DB {
private static final String URL_PROPERTY = "neo4j.url";
private static final String URL_PROPERTY_DEFAULT = "bolt://localhost:7687";
private static String URL_PROPERTY_DEFAULT = "";

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let this be as is, because that would be the default value.

@aniketnk
Copy link
Owner

aniketnk commented Jun 19, 2019

Duplicate PR #2
#2 is cleaner with lesser commits.

@aniketnk aniketnk closed this Jun 19, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants