Skip to content

Latest commit

 

History

History
19 lines (16 loc) · 867 Bytes

2.4.md

File metadata and controls

19 lines (16 loc) · 867 Bytes

#2.4 configPlugin (Plugins me) 此方法用来配置JFinal的Plugin,如下代码配置了C3p0数据库连接池插件与ActiveRecord数据库访问插件。通过以下的配置,可以在应用中使用ActiveRecord非常方便地操作数据库。

public void configPlugin(Plugins me) {
	loadPropertyFile("your_app_config.txt");
	C3p0Plugin c3p0Plugin = new C3p0Plugin(getProperty("jdbcUrl"), 
							getProperty("user"), getProperty("password"));
	me.add(c3p0Plugin);
	ActiveRecordPlugin arp = new ActiveRecordPlugin(c3p0Plugin);
	me.add(arp);
	arp.addMapping("user", User.class);
}

JFinal插件架构是其主要扩展方式之一,可以方便地创建插件并应用到项目中去。

links