codecamp

属性名与数据表列驼峰关系映射

实体属性如下

public class AutoEntity 
{
	
	private String name="";
	private float price=0;
	private String userName="";
	private String parentId="";

}

数据表中的列名是name,price,user_name,parent_id ,这时只需要在配置文件jfaster.properties中配置如下属性即可

org.jfaster.core.Mappings.camel=true

这样,在生成实体与数据表映射的时候,就会把属性名按照大写字母处添加下划线拆分了



多数据源的使用-连接池
过滤器配置web.xml
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }