com.fastchar.extjs.entity.ExtSystemLogEntity Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fastchar-extjs Show documentation
Show all versions of fastchar-extjs Show documentation
FastChar-ExtJs is a Java Web framework that uses extjs libraries.
package com.fastchar.extjs.entity;
import com.fastchar.core.FastChar;
import com.fastchar.database.FastPage;
import com.fastchar.database.info.FastSqlInfo;
import com.fastchar.extjs.core.FastExtEntity;
import com.fastchar.utils.FastDateUtils;
import javax.servlet.http.HttpServletRequest;
import java.util.ArrayList;
import java.util.List;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class ExtSystemLogEntity extends FastExtEntity {
public static ExtSystemLogEntity getInstance() {
return FastChar.getOverrides().singleInstance(ExtSystemLogEntity.class);
}
@Override
public String getTableName() {
return "ext_system_log";
}
@Override
public String getEntityCode() {
return this.getClass().getSimpleName();
}
@Override
public FastPage showList(int page, int pageSize) {
String sqlStr = "select t.*,a.managerName as a__managerName from ext_system_log as t " +
" left join ext_manager as a on a.managerId=t.managerId order by t.systemLogDateTime desc ";
FastSqlInfo sqlInfo = toSelectSql(sqlStr);
return selectBySql(page, pageSize, sqlInfo.getSql(), sqlInfo.toParams());
}
@Override
public void setDefaultValue() {
set("managerId", 0);
set("systemLogDateTime", FastDateUtils.getDateString());
}
public List getKeys(String content) {
List keys = new ArrayList<>();
String regStr = "\\$\\{([^${}]*)}";
Pattern compile = Pattern.compile(regStr);
Matcher matcher = compile.matcher(content);
while (matcher.find()) {
keys.add(matcher.group(1));
}
return keys;
}
public String replaceHolder(String content, HttpServletRequest request) {
List keys = getKeys(content);
for (String key : keys) {
String value = "";
if (request.getAttribute(key) != null) {
value = String.valueOf(request.getAttribute(key));
}
String keyModule = "\\$\\{" + key + "}";
content = content.replaceAll(keyModule, value);
}
return content;
}
}