摘要:
1、webkit内核多行缩略样式 text-overflow:ellipsis; display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical;2、使用javascript做兼容/** * 多行缩... 阅读全文
摘要:
在使用@ManyToMany时,若中间表只有相应的外键字段可以直接建立两个对应的Entity 设置ManyToMany @ManyToMany 两个表多对多关联 但若是中间表有自己的附加字段,这需要为中间表建立Entity 具体如下: Teacher <=> Student 中间表 teacher_ 阅读全文
摘要:
两个表属于多对多关系 如 Teacher Student表teacher 主键 id表student 主键id中间关联表 teacher_student 两个字段 t_id 和 s_id@EntityStudent 设置多对多 @ManyToMany(cascade = CascadeTyp... 阅读全文
摘要:
1、初始化隐藏某条曲线series 配置如:[ {name:"发帖", postCountData}, {name:"删帖帖", deleteCountData, visible:false},//该条曲线将不显示 {name:"活跃数",activeCountData}];2、手... 阅读全文
摘要:
ActionInvocation invocation = ActionContext.getContext().getActionInvocation(); Object action = invocation.getAction(); Method method = acti... 阅读全文
摘要:
今天在做统计功能的时候遇到这样一个问题,由于查询结果为统计的数据,即使用了sum方法生成的字段,select refDate,sum(triggerCount) as triggerCount,sum(case when unique_key is null then 0 else trigger_... 阅读全文
摘要:
public static byte[] toBinary(String filename) throws IOException{ if(!ParameterChecker.startWithProtocol(filename)){ if(filenam... 阅读全文
摘要:
Date.prototype.format =function(format){ var o = { "M+" : this.getMonth()+1, //month "d+" : this.getDate(), //day "H+" : th... 阅读全文