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/f8da976b456baaecac55 to your computer and use it in GitHub Desktop.
Save iocanel/f8da976b456baaecac55 to your computer and use it in GitHub Desktop.
A Mysql Connection Factory
import java.sql.Connection;
import io.fabric8.annotations.Factory;
import io.fabric8.annotations.ServiceName;
public class MysqlConnectionFactory {
@Factory
@ServiceName
public Connection createConnection(@ServiceName @Protocol("jdbc:mysql") String url) {
Class.forName("com.mysql.jdbc.Driver");
return DriverManager.getConnection(serivceUrl + "/" + DB);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment