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/64f696edf56a0ec5e173 to your computer and use it in GitHub Desktop.
Save iocanel/64f696edf56a0ec5e173 to your computer and use it in GitHub Desktop.
A mysql example using @protocol
import javax.inject.Inject;
import io.fabric8.annotations.Protocol;
import io.fabric8.annotations.ServiceName;
public class MysqlExampleWithProtocol {
private static final DB = "mydb";
private final Connection connection;
public MysqlExampleWithProtocol(@Inject @Protocol("jdbc:mysql") @ServiceName("mysql") String serivceUrl) {
Class.forName("com.mysql.jdbc.Driver");
return DriverManager.getConnection(serivceUrl + "/" + DB);
}
//More stuff
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment