Skip to content

Instantly share code, notes, and snippets.

@mohashari
Created December 3, 2019 07:40
Show Gist options
  • Select an option

  • Save mohashari/271668d7e3a1643af861bb7b606650de to your computer and use it in GitHub Desktop.

Select an option

Save mohashari/271668d7e3a1643af861bb7b606650de to your computer and use it in GitHub Desktop.
package designpattern.singleton;
public class DbHelper {
private static Connection connection;
public static Connection getConnection() {
if (connection == null)
connection = new Connection("localhost", "root", "root");
return connection;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment