com.github.zhengframework.jdbc.Sql2oAutoModuleProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zheng-jdbc-sql2o Show documentation
Show all versions of zheng-jdbc-sql2o Show documentation
zheng framework module: jdbc sql2o support
package com.github.zhengframework.jdbc;
public class Sql2oAutoModuleProvider extends AbstractAutoModule {
@Override
protected void installModule(String name) {
if (name.isEmpty()) {
install(new Sql2oModule());
} else {
install(new Sql2oModule(name));
}
}
}