本文整理汇总了Java中com.jfinal.plugin.activerecord.ActiveRecordException类的典型用法代码示例。如果您正苦于以下问题:Java ActiveRecordException类的具体用法?Java ActiveRecordException怎么用?Java ActiveRecordException使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
ActiveRecordException类属于com.jfinal.plugin.activerecord包,在下文中一共展示了ActiveRecordException类的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: handler
import com.jfinal.plugin.activerecord.ActiveRecordException; //导入依赖的package包/类
/**
* 新增自定义获取model方法
*
* 2016年1月12日 下午2:38:16 flyfox [email protected]
*
* @param model
*/
public static void handler(BaseModel<?> model, JSONObject jsonObject) {
Table table = TableMapping.me().getTable(model.getClass());
for (Entry<String, Object> e : jsonObject.entrySet()) {
String paraKey = e.getKey();
String paraName = paraKey;
if (table.hasColumnLabel(paraName)) {
Class<?> colType = table.getColumnType(paraName);
if (colType == null)
throw new ActiveRecordException("The model attribute " + paraKey + " is not exists.");
Object paraValue = e.getValue();
try {
Object value = paraValue != null ? convert(colType, paraValue.toString()) : null;
model.set(paraName, value);
} catch (Exception ex) {
throw new RuntimeException("Can not convert parameter: " + paraName, ex);
}
}
}
}