Skip to content

Instantly share code, notes, and snippets.

@iocanel
Last active August 29, 2015 14:23
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 iocanel/e7da3406df2d6f9dc8a0 to your computer and use it in GitHub Desktop.
Save iocanel/e7da3406df2d6f9dc8a0 to your computer and use it in GitHub Desktop.
Mysql Example with Factory
import java.sql.Connection;
import javax.inject.Inject;
import io.fabric8.annotations.ServiceName;
public class MysqlExampleWithFactory {
private Connection connection;
public MysqlExampleWithProtocol(@Inject @ServiceName("mysql") Connection connection) {
this.connection = connection;
}
//More stuff
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment