*/
public class StartModule extends WebModule {
@Override
public void loadModule(WebApiBinder apiBinder) throws Throwable {
//1.启用Hasor-DB 插件(使用c3p0连接池)
apiBinder.installModule(new SimpleDBModule("default", buildC3p0(apiBinder)));
//2.启用Hasor-AR
apiBinder.installModule(new SimpleDBModule("default", buildC3p0(apiBinder)));
//3.Web MVC
apiBinder.installModule(new WebControllerModule());
}