修改所有bug-2016-11-10

web_backend_develope
chenlw 9 years ago
parent 6e2cd66eb6
commit cecf3014f2

@ -147,13 +147,13 @@ public class CheckoutController extends BaseController {
public ModelMap deleteList(@RequestBody List<CheckoutEntity> form, HttpServletRequest req, HttpServletResponse res) throws Exception {
ModelMap modelMap = new ModelMap();
if (null != form) {
log.info("---------/checkList--- "+ form.size());
log.info("---------/deleteList--- "+ form.size());
List<CheckoutEntity> result = checkoutService.deleteAll(form);
modelMap.addAttribute("data", result);
modelMap.addAttribute("length", result.size());
}
else {
log.info("---------/checkList--- "+ form);
log.info("---------/deleteList--- "+ form);
}
return modelMap;
}

@ -102,7 +102,7 @@ public class DataModelController extends BaseController {
sb.append(str).append(":").append("null").append(",");
}
}
Configs.CONSOLE_LOGGER.info(sb.deleteCharAt(sb.length() - 1)
log.info(sb.deleteCharAt(sb.length() - 1)
.append("}").toString());
PagerOptions pagerOptions = (PagerOptions) UtilsHelper
.newObjAndSetAttrsByClass(PagerOptions.class, params);

@ -49,6 +49,7 @@ import com.platform.entities.ResumableInfoStorage;
import com.platform.service.IPreDataInfoService;
import com.platform.service.IScriptMakeService;
import com.platform.utils.Configs;
import com.platform.utils.FileOperateHelper;
import com.platform.utils.HttpUtils;
import com.platform.utils.ThreadRemoveFile;
import com.platform.utils.UtilsHelper;
@ -242,13 +243,8 @@ public class ExcelController extends BaseController{
log.info(jsonlist.size());
List<String> listPath = new ArrayList<String>();
// 末尾 含有 /(linux)
Pattern pattern2 = Pattern.compile("\\/$");
Matcher matcher2 = pattern2.matcher(Configs.FILE_UPLOAD_PATH);
// 加上 最后 的 /
String dirPath = Configs.FILE_UPLOAD_PATH;
if (!matcher2.find()) {
dirPath = dirPath + File.separator;
}
String dirPath = FileOperateHelper.addLastSeparator(Configs.FILE_UPLOAD_PATH);;
for (String p : jsonlist) {
listPath.add(dirPath + p);
}
@ -257,7 +253,7 @@ public class ExcelController extends BaseController{
//导入
result = preDataInfoService.importExcel(listPath);
//失败
if (result.containsKey("fileUnExist") || result.containsKey("areaUnImport")) {
if (result.containsKey("fileUnExist")/* || result.containsKey("areaUnImport")*/) {
modelMap.addAttribute("data", result);
modelMap.addAttribute("code","3001");
response.setStatus(500);
@ -285,6 +281,7 @@ public class ExcelController extends BaseController{
//删除失败时--启用线程去删除
new ThreadRemoveFile(failedDelete).start();
}
log.info("success : "+modelMap);
return modelMap;
}

@ -129,4 +129,61 @@ public class FilePackageController extends BaseController {
modelMap.addAttribute("length", results.size());
return modelMap;
}
/**
*
* @param type
* @param opt
* @param form
* @param req
* @param res
* @return
* @throws Exception
*/
@RequestMapping(value = "/totalOnholeSqlFile", method = RequestMethod.POST)
@ResponseBody
public ModelMap totalOnholeSqlFile(@RequestBody List<SqlFileInfoEntity> forms,
HttpServletRequest req, HttpServletResponse res) throws Exception {
log.info("--------- /totalOnholeSqlFile --- " + forms +" "+ forms.size());
ModelMap modelMap = new ModelMap();
if (forms.size() > 0) {
Map<String, Object> result = scriptMakeService.totalOnholeSqlFile(forms);
if (result.containsKey("nosqlfile")) {
modelMap.addAllAttributes(result);
}
}
List<SqlFileInfoEntity> results = scriptMakeService.findAllFiles();
modelMap.addAttribute("data", results);
modelMap.addAttribute("length", results.size());
return modelMap;
}
/**
*
* @param type
* @param opt
* @param form
* @param req
* @param res
* @return
* @throws Exception
*/
@RequestMapping(value = "/totalVerifySqlFile", method = RequestMethod.POST)
@ResponseBody
public ModelMap totalVerifySqlFile(@RequestBody List<SqlFileInfoEntity> forms,
HttpServletRequest req, HttpServletResponse res) throws Exception {
log.info("--------- /totalOnholeSqlFile --- " + forms +" "+ forms.size());
ModelMap modelMap = new ModelMap();
if (forms.size() > 0) {
Map<String, Object> result = scriptMakeService.totalVerifySqlFile(forms);
if (result.containsKey("nosqlfile")) {
modelMap.addAllAttributes(result);
res.setStatus(500);
}
}
List<SqlFileInfoEntity> results = scriptMakeService.findAllFiles();
modelMap.addAttribute("data", results);
modelMap.addAttribute("length", results.size());
return modelMap;
}
}

@ -28,7 +28,7 @@ public class DefaultDataDescription {
private String sys_description;
private String sys_develope;
private String sys_developer;
private String database;
@ -239,15 +239,15 @@ public class DefaultDataDescription {
/**
* @return the sys_develope
*/
public String getSys_develope() {
return sys_develope;
public String getSys_developer() {
return sys_developer;
}
/**
* @param sys_develope the sys_develope to set
*/
public void setSys_develope(String sys_develope) {
this.sys_develope = sys_develope;
public void setSys_developer(String sys_develope) {
this.sys_developer = sys_develope;
}
/**
@ -449,7 +449,7 @@ public class DefaultDataDescription {
sys_description = pre.getFunctionDetails();
sys_develope = pre.getDeveloperFullName();
sys_developer = pre.getDeveloperFullName();
database = pre.getDataBaseType();

@ -20,6 +20,7 @@ public class SqlFileInfoEntity{
/** 数据库类型 */
private String dataBaseType;
/** 状态 (含义,操作) -> 0有缺失上传 1 (正常,查看); 2待归档归档 3 (待审核,审核) */
private int userTableStatus;
private String userTableStatusPathLast;
@ -30,6 +31,7 @@ public class SqlFileInfoEntity{
private String userTableStatusStandardModified;
/** 状态 (含义,操作) -> 0有缺失上传 1 (正常,查看); 2待归档归档 3 (待审核,审核) */
private int ckPayStatus;
private String ckPayStatusPathLast;
@ -40,6 +42,7 @@ public class SqlFileInfoEntity{
private String ckPayStatusStandardModified;
/** 状态 (含义,操作) -> 0有缺失上传 1 (正常,查看); 2待归档归档 3 (待审核,审核) */
private int ckIndicateStatus;
private String ckIndicateStatusPathLast;

@ -22,17 +22,18 @@ public class ScriptForm {
* @param content the content to set
*/
public void setContent(String content) {
Properties pro = System.getProperties();
String osName = pro.getProperty("os.name");
try {
if("Linux".equals(osName)||"linux".equals(osName)){
this.content = new String(content.getBytes("iso-8859-1"),"UTF-8");
}
else {
this.content = new String(content.getBytes("iso-8859-1"),"GBK");
}
} catch (UnsupportedEncodingException e) {
}
// Properties pro = System.getProperties();
// String osName = pro.getProperty("os.name");
// try {
// if("Linux".equals(osName)||"linux".equals(osName)){
// this.content = new String(content.getBytes("iso-8859-1"),"UTF-8");
// }
// else {
// this.content = new String(content.getBytes("iso-8859-1"),"GBK");
// }
// } catch (UnsupportedEncodingException e) {
// }
this.content = content;
}
/**

@ -26,4 +26,16 @@ public interface IScriptMakeService {
*/
public Map<String, Object> handleSqlFile(String type, String opt, String content, SqlFileInfoEntity form);
/**
* @param forms
* @return
*/
public Map<String, Object> totalOnholeSqlFile(List<SqlFileInfoEntity> forms);
/**
* @param forms
* @return
*/
public Map<String, Object> totalVerifySqlFile(List<SqlFileInfoEntity> forms);
}

@ -338,14 +338,19 @@ public class CheckoutServiceImpl implements ICheckoutService {
throws Exception {
List<Integer> dataIds = new ArrayList<Integer>();
for (CheckoutEntity checkoutEntity : list) {
dataIds.add(checkoutEntity.getDataId());
int dataInfoId = checkoutEntity.getDataId();
if (dataInfoId > 0) {
dataIds.add(dataInfoId);
}
}
dataInfoService.deleteData(dataIds);
if (dataIds.size() > 0) {
dataInfoService.deleteData(dataIds);
// 根据 dataIds 删除
List<CheckoutEntity> result = new ArrayList<CheckoutEntity>();
if (list.size() > 0) {
result = findByCity(list.get(0).getCityName());
}
}
List<CheckoutEntity> result = new ArrayList<CheckoutEntity>();
if (list.size() > 0) {
result = findByCity(list.get(0).getCityName());
}
return result;
}
}

@ -71,8 +71,6 @@ public class PreDataInfoServiceImpl implements IPreDataInfoService {
List<String> errFile = new ArrayList<String>();
// 待增加的
List<PreDataInfo> all2Insert = new ArrayList<PreDataInfo>();
// 待修改的
List<PreDataInfo> all2Update = new ArrayList<PreDataInfo>();
//excel读出的 所有
List<PreDataInfo> all = new ArrayList<PreDataInfo>();
//excel读出的 所有修改操作的数据
@ -108,16 +106,18 @@ public class PreDataInfoServiceImpl implements IPreDataInfoService {
//excel数据 --> java bean
List<PreDataInfo> subPreData = ExcelOperation.readExcel4Update(workbook, Constant.EXCEL_TEMPLATE_INIT_ROW, 0, pre, "id", "dataId", "workRange","sysCode","updateTime","userTablespaceStatus", "checkoutIndicateStatus", "checkoutPayStatus", "userTablespacePath", "checkoutIndicatePath", "checkoutPayPath", "sqlList", "dataVersion", "collectingTime", "collUpdate");
if (null != subPreData && subPreData.size() > 0) {
//是否是 同一个县区的 系统--是则 加入
// 是否是 同一个县区的 系统--是则 加入
boolean isSameArea = true;
String areaCode = subPreData.get(0).getAreaCode();
for (PreDataInfo preDataInfo : subPreData) {
if (!areaCode.equals(preDataInfo.getAreaCode())) {
isSameArea = false;
// TODO 不是同一个地区: isSameArea = false;
// isSameArea = false;
errArea.add(areaCode);
break;
}
}
// 是同一个地区,则将 excel中的 待 操作的数据 全加载 到 all 里面
if (isSameArea) {
all.addAll(subPreData);
}
@ -161,18 +161,51 @@ public class PreDataInfoServiceImpl implements IPreDataInfoService {
}
}
}
// 查系统 是否没有-(没有则在 pre_data_info添加新系统
//TODO 查 地区 是否没有-(没有则添加新地区):
if (list4AddArea.size() > 0) {
this.addArea(list4AddArea);
}
//在 pre_data_info表中 新增 操作为(新增行政区划)的系统 -- start
List<PreDataInfo> allAreaInsert = new ArrayList<PreDataInfo>();
List<String> sysNamesArea = new ArrayList<String>();
for (PreDataInfo preDataInfo : list4AddArea) {
sysNamesArea.add(preDataInfo.getSysName());
}
//查询系统的code。
List<SystemEntity> listSystem = new ArrayList<SystemEntity>();
// if (sysNamesArea.size() > 0) {
// listSystem = systemCodeDao.findByName(sysNamesArea);
// }
Map<String, Integer> syscodeMap = new HashMap<String, Integer>();
// for (SystemEntity systemEntity : listSystem) {
// syscodeMap.put(systemEntity.getSystemName(), systemEntity.getCode());
// }
// for (PreDataInfo preDataInfo : list4AddArea) {
// PreDataInfo areaFull = new PreDataInfo();
// BeanCopy.copyBean(preDataInfo, areaFull);
// areaFull.setSysCode(syscodeMap.get(areaFull.getSysName()));
// areaFull.setUpdateTime(DateForm.date2StringBysecond(new Date()));
// allAreaInsert.add(areaFull);
// }
//TODO 去掉 已经导入的系统。。(例如 excel反复导入
//在 pre_data_info表中 新增 操作为(新增行政区划)的系统
allAreaInsert = removeRepeat(list4AddArea);
if (allAreaInsert.size() > 0) {
list4AddSystem.addAll(allAreaInsert);
// insertBatch(allAreaInsert);
}
//TODO 查系统 是否没有-(没有则在 pre_data_info添加新系统
if (list4AddSystem.size() > 0) {
this.AddSystem(list4AddSystem);
List<String> sysNames = new ArrayList<String>();
for (PreDataInfo preDataInfo : list4AddSystem) {
sysNames.add(preDataInfo.getSysName());
}
List<SystemEntity> listSystem = new ArrayList<SystemEntity>();
listSystem = new ArrayList<SystemEntity>();
if (sysNames.size() > 0) {
listSystem = systemCodeDao.findByName(sysNames);
}
Map<String, Integer> syscodeMap = new HashMap<String, Integer>();
syscodeMap = new HashMap<String, Integer>();
for (SystemEntity systemEntity : listSystem) {
syscodeMap.put(systemEntity.getSystemName(), systemEntity.getCode());
}
@ -188,43 +221,13 @@ public class PreDataInfoServiceImpl implements IPreDataInfoService {
//在 pre_data_info表中 新增 操作为(新增信息系统)的系统
all2Insert = removeRepeat(all2Insert);
if (all2Insert.size() > 0) {
preDataInfoDao.insertBatch(all2Insert);
}
// 查 地区 是否没有-(没有则添加新地区):
if (list4AddArea.size() > 0) {
this.addArea(list4AddArea);
}
//在 pre_data_info表中 新增 操作为(新增行政区划)的系统 -- start
List<PreDataInfo> allAreaInsert = new ArrayList<PreDataInfo>();
List<String> sysNamesArea = new ArrayList<String>();
for (PreDataInfo preDataInfo : list4AddArea) {
sysNamesArea.add(preDataInfo.getSysName());
}
//查询系统的code。
List<SystemEntity> listSystem = new ArrayList<SystemEntity>();
if (sysNamesArea.size() > 0) {
listSystem = systemCodeDao.findByName(sysNamesArea);
}
Map<String, Integer> syscodeMap = new HashMap<String, Integer>();
for (SystemEntity systemEntity : listSystem) {
syscodeMap.put(systemEntity.getSystemName(), systemEntity.getCode());
}
for (PreDataInfo preDataInfo : list4AddArea) {
PreDataInfo areaFull = new PreDataInfo();
BeanCopy.copyBean(preDataInfo, areaFull);
areaFull.setSysCode(syscodeMap.get(areaFull.getSysName()));
areaFull.setUpdateTime(DateForm.date2StringBysecond(new Date()));
allAreaInsert.add(areaFull);
}
//TODO 去掉 已经导入的系统。。(例如 excel反复导入
//在 pre_data_info表中 新增 操作为(新增行政区划)的系统
allAreaInsert = removeRepeat(allAreaInsert);
if (allAreaInsert.size() > 0) {
preDataInfoDao.insertBatch(allAreaInsert);
insertBatch(all2Insert);
}
//在 pre_data_info表中 新增 操作为(新增行政区划)的系统 -- end
//在 pre_data_info表中 更新 操作为 (修改) 的系统
if (list4Update.size() > 0) {
// 待修改的
List<PreDataInfo> allUpdate = new ArrayList<PreDataInfo>();
// 查询系统 code
for (PreDataInfo preDataInfo : list4Update) {
@ -246,6 +249,7 @@ public class PreDataInfoServiceImpl implements IPreDataInfoService {
UpdateFull.setUpdateTime(DateForm.date2StringBysecond(new Date()));
allUpdate.add(UpdateFull);
}
//TODO 更新
for (PreDataInfo preEntity : allUpdate) {
preDataInfoDao.update(preEntity);
}
@ -334,12 +338,12 @@ public class PreDataInfoServiceImpl implements IPreDataInfoService {
List<String> areacodeList = new ArrayList<String>();
Map<String,RegionalismEntity> areaMap = new HashMap<String, RegionalismEntity>();
for (PreDataInfo preDataInfo : list4AddArea) {
areacodeList.add(preDataInfo.getAreaCode());
areacodeList.add(preDataInfo.getAreaCode().toLowerCase());
RegionalismEntity region = new RegionalismEntity();
region.setCode(preDataInfo.getAreaCode());
region.setCode(preDataInfo.getAreaCode().toLowerCase());
region.setCityName(preDataInfo.getCityName());
region.setDistrictName(preDataInfo.getDistrictName());
areaMap.put(region.getCode(), region);
areaMap.put(region.getCode().toLowerCase(), region);
}
List<RegionalismEntity> existEntity = regionalismCodeDao.findExistRegionalism(areacodeList);
for (RegionalismEntity regionalismEntity : existEntity) {
@ -352,7 +356,11 @@ public class PreDataInfoServiceImpl implements IPreDataInfoService {
insert2Regionalism.add(areaMap.get(key));
}
if (insert2Regionalism.size() > 0) {
regionalismCodeDao.insertBatch(insert2Regionalism);
try {
regionalismCodeDao.insertBatch(insert2Regionalism);
} catch (Exception e) {
log.error(" -- regionalismCodeDao.insertBatch() --- error ");
}
insertNum = insert2Regionalism.size();
}
}
@ -474,4 +482,34 @@ public class PreDataInfoServiceImpl implements IPreDataInfoService {
return allResult;
}
/** --(allAreaInsert ) allAreaInsert 100 11 10
* @param allAreaInsert
*/
private void insertBatch(List<PreDataInfo> allAreaInsert) {
if (allAreaInsert.size() > 0) {
int listSize = allAreaInsert.size();
int loopSize = listSize/Configs.NUM_ONE_IMPORT_EXCEL;
if (loopSize * Configs.NUM_ONE_IMPORT_EXCEL != listSize) {
loopSize++;
}
// List<ArrayList<PreDataInfo>> list = new ArrayList<ArrayList<PreDataInfo>>();
List<PreDataInfo>[] list = new ArrayList[loopSize];
for (int i = 0; i < loopSize; i++) {
list[i] = new ArrayList<PreDataInfo>();
// list.add(new ArrayList<PreDataInfo>());
}
for (int i = 0; i < listSize; i++) {
list[i%loopSize].add(allAreaInsert.get(i));
// list.get(i%loopSize).add(allAreaInsert.get(i));
}
for (List<PreDataInfo> arrayList : list) {
try {
preDataInfoDao.insertBatch(arrayList);
} catch (Exception e) {
log.error(e.getStackTrace());
}
}
}
}
}

@ -47,7 +47,7 @@ public class ScriptMakeService implements IScriptMakeService {
sb.append("市\t县市、区\t行政区划代码\r\n");
Map<String, Object> startData = new HashMap<String, Object>();
for (PreDataInfo preDataInfo : systemInfoList) {
startData.put(preDataInfo.getAreaCode(), preDataInfo);
startData.put(preDataInfo.getAreaCode().toLowerCase(), preDataInfo);
}
// 以地区为准--一个地区一个xml
@ -57,10 +57,10 @@ public class ScriptMakeService implements IScriptMakeService {
sb.append("\t");
sb.append(preDataInfo.getDistrictName());
sb.append("\t");
sb.append(preDataInfo.getAreaCode());
sb.append(preDataInfo.getAreaCode().toLowerCase());
sb.append("\r\n");
}
FileOperateHelper.fileReWrite(path + Constant.cfgFileName,
FileOperateHelper.fileReWriteGBK(path + Constant.cfgFileName,
sb.toString());
log.info("makeCfg--end");
return 1;
@ -74,7 +74,7 @@ public class ScriptMakeService implements IScriptMakeService {
.addLastSeparator(Configs.SQL_SCRIPT_PATH_STANDARD);
Map<String, List<Object>> map = new HashMap<String, List<Object>>();
for (PreDataInfo preDataInfo : systemInfoList) {
putSystemByAreaCode(map, preDataInfo.getAreaCode(), preDataInfo);
putSystemByAreaCode(map, preDataInfo.getAreaCode().toLowerCase(), preDataInfo);
}
// 一个地区一个xml
for (String key : map.keySet()) {
@ -172,30 +172,30 @@ public class ScriptMakeService implements IScriptMakeService {
case "userTableStatus":
standardPath = form.getUserTableStatusPathStandard();
if (null == standardPath || standardPath.isEmpty()) {
File file = new File(FileOperateHelper.addLastSeparator(Configs.SQL_SCRIPT_PATH_STANDARD) + form.getAreaCode());
String spath = FileOperateHelper.addLastSeparator(Configs.SQL_SCRIPT_PATH_STANDARD) + form.getAreaCode().toLowerCase();
File file = new File(spath);
file.mkdir();
standardPath = FileOperateHelper.addLastSeparator(Configs.SQL_SCRIPT_PATH_STANDARD) + form.getAreaCode()
+ File.separator + "UserTablespace_" + form.getAreaCode() + "_" + form.getSysCode() + ".sql";
standardPath = spath + File.separator + "UserTablespace_" + form.getAreaCode().toLowerCase() + "_" + form.getSysCode() + ".sql";
}
lastPath = form.getUserTableStatusPathLast();
break;
case "ckIndicateStatus":
standardPath = form.getCkIndicateStatusPathStandard();
if (null == standardPath || standardPath.isEmpty()) {
File file = new File(FileOperateHelper.addLastSeparator(Configs.SQL_SCRIPT_PATH_STANDARD) + form.getAreaCode());
String spath = FileOperateHelper.addLastSeparator(Configs.SQL_SCRIPT_PATH_STANDARD) + form.getAreaCode().toLowerCase();
File file = new File(spath);
file.mkdir();
standardPath = FileOperateHelper.addLastSeparator(Configs.SQL_SCRIPT_PATH_STANDARD) + form.getAreaCode()
+ File.separator + "Checkout_Indicate_" + form.getAreaCode() + "_" + form.getSysCode() + ".sql";
standardPath = spath + File.separator + "Checkout_Indicate_" + form.getAreaCode().toLowerCase() + "_" + form.getSysCode() + ".sql";
}
lastPath = form.getCkIndicateStatusPathLast();
break;
case "ckPayStatus":
standardPath = form.getCkPayStatusPathStandard();
if (null == standardPath || standardPath.isEmpty()) {
File file = new File(FileOperateHelper.addLastSeparator(Configs.SQL_SCRIPT_PATH_STANDARD) + form.getAreaCode());
String spath = FileOperateHelper.addLastSeparator(Configs.SQL_SCRIPT_PATH_STANDARD) + form.getAreaCode().toLowerCase();
File file = new File(spath);
file.mkdir();
standardPath = FileOperateHelper.addLastSeparator(Configs.SQL_SCRIPT_PATH_STANDARD) + form.getAreaCode()
+ File.separator + "Checkout_Pay_" + form.getAreaCode() + "_" + form.getSysCode() + ".sql";
standardPath = spath + File.separator + "Checkout_Pay_" + form.getAreaCode().toLowerCase() + "_" + form.getSysCode() + ".sql";
}
lastPath = form.getCkPayStatusPathLast();
break;
@ -213,12 +213,12 @@ public class ScriptMakeService implements IScriptMakeService {
break;
// 最新脚本 替换 标准脚本(即 以最新脚本为准 (归档或审核-替换)
case "replace":
FileOperateHelper.fileReWrite(standardPath, fileReader(lastPath));
FileOperateHelper.fileReWriteGBK(standardPath, fileReader(lastPath));
fileDelete(lastPath);
break;
//新增 标准的脚本(注意 造出 对应的 standardPath standardPath不能 = null '')(上传)
case "add":
FileOperateHelper.fileReWrite(standardPath,content);
FileOperateHelper.fileReWriteGBK(standardPath,content);
break;
// (查看)
case "read":
@ -379,7 +379,7 @@ public class ScriptMakeService implements IScriptMakeService {
private String getFilePath(String prefix, Map<String, String> map,
SqlFileInfoEntity myf, String affix) {
StringBuffer sb = new StringBuffer();
sb.append(prefix).append(myf.getAreaCode()).append("_")
sb.append(prefix).append(myf.getAreaCode().toLowerCase()).append("_")
.append(myf.getSysCode()).append(affix);
String fileName = sb.toString().toLowerCase();
if (!map.containsKey(fileName)) {
@ -439,7 +439,7 @@ public class ScriptMakeService implements IScriptMakeService {
}
for (Integer integer : numArr) {
if (integer != 1) {
result = result & integer;
result = result | integer;
}
}
return result;
@ -467,4 +467,113 @@ public class ScriptMakeService implements IScriptMakeService {
}
return 1;
}
@Override
public Map<String, Object> totalOnholeSqlFile(List<SqlFileInfoEntity> forms) {
Map<String, Object> errMap = new HashMap<String, Object>();
List<String> errlist = new ArrayList<String>();
//待归档 status = 2
for (SqlFileInfoEntity sqlFile : forms) {
// 用户表空间脚本
if (sqlFile.getUserTableStatus() == 2) {
String standardPath = sqlFile.getUserTableStatusPathStandard();
if (null == standardPath || standardPath.isEmpty()) {
String spath = FileOperateHelper.addLastSeparator(Configs.SQL_SCRIPT_PATH_STANDARD) + sqlFile.getAreaCode().toLowerCase();
File file = new File(spath);
file.mkdir();
standardPath = spath + File.separator + "UserTablespace_" + sqlFile.getAreaCode().toLowerCase() + "_" + sqlFile.getSysCode() + ".sql";
}
String lastPath = sqlFile.getUserTableStatusPathLast();
if(!FileOperateHelper.singleFileMove(lastPath, standardPath)){
errlist.add(lastPath);
}
}
// 支付脚本
if (sqlFile.getCkPayStatus() == 2) {
String standardPath = sqlFile.getCkPayStatusPathStandard();
if (null == standardPath || standardPath.isEmpty()) {
String spath = FileOperateHelper.addLastSeparator(Configs.SQL_SCRIPT_PATH_STANDARD) + sqlFile.getAreaCode().toLowerCase();
File file = new File(spath);
file.mkdir();
standardPath = spath + File.separator + "Checkout_Pay_" + sqlFile.getAreaCode().toLowerCase() + "_" + sqlFile.getSysCode() + ".sql";
}
String lastPath = sqlFile.getCkPayStatusPathLast();
if(!FileOperateHelper.singleFileMove(lastPath, standardPath)){
errlist.add(lastPath);
}
}
// 可执行脚本
if (sqlFile.getCkIndicateStatus() == 2) {
String standardPath = sqlFile.getCkIndicateStatusPathStandard();
if (null == standardPath || standardPath.isEmpty()) {
String spath = FileOperateHelper.addLastSeparator(Configs.SQL_SCRIPT_PATH_STANDARD) + sqlFile.getAreaCode().toLowerCase();
File file = new File(spath);
file.mkdir();
standardPath = spath + File.separator + "Checkout_Indicate_" + sqlFile.getAreaCode().toLowerCase() + "_" + sqlFile.getSysCode() + ".sql";
}
String lastPath = sqlFile.getCkIndicateStatusPathLast();
if(!FileOperateHelper.singleFileMove(lastPath, standardPath)){
errlist.add(lastPath);
}
}
}
if (errlist.size() > 0) {
errMap.put("nosqlfile", errlist);
}
return errMap;
}
@Override
public Map<String, Object> totalVerifySqlFile(List<SqlFileInfoEntity> forms) {
Map<String, Object> errMap = new HashMap<String, Object>();
List<String> errlist = new ArrayList<String>();
//待归档 status = 2
for (SqlFileInfoEntity sqlFile : forms) {
// 用户表空间脚本
if (sqlFile.getUserTableStatus() == 3) {
String standardPath = sqlFile.getUserTableStatusPathStandard();
if (null == standardPath || standardPath.isEmpty()) {
String spath = FileOperateHelper.addLastSeparator(Configs.SQL_SCRIPT_PATH_STANDARD) + sqlFile.getAreaCode().toLowerCase();
File file = new File(spath);
file.mkdir();
standardPath = spath + File.separator + "UserTablespace_" + sqlFile.getAreaCode().toLowerCase() + "_" + sqlFile.getSysCode() + ".sql";
}
String lastPath = sqlFile.getUserTableStatusPathLast();
if(!FileOperateHelper.singleFileMove(lastPath, standardPath)){
errlist.add(lastPath);
}
}
// 支付脚本
if (sqlFile.getCkPayStatus() == 3) {
String standardPath = sqlFile.getCkPayStatusPathStandard();
if (null == standardPath || standardPath.isEmpty()) {
String spath = FileOperateHelper.addLastSeparator(Configs.SQL_SCRIPT_PATH_STANDARD) + sqlFile.getAreaCode().toLowerCase();
File file = new File(spath);
file.mkdir();
standardPath = spath + File.separator + "Checkout_Pay_" + sqlFile.getAreaCode().toLowerCase() + "_" + sqlFile.getSysCode() + ".sql";
}
String lastPath = sqlFile.getCkPayStatusPathLast();
if(!FileOperateHelper.singleFileMove(lastPath, standardPath)){
errlist.add(lastPath);
}
}
// 可执行脚本
if (sqlFile.getCkIndicateStatus() == 3) {
String standardPath = sqlFile.getCkIndicateStatusPathStandard();
if (null == standardPath || standardPath.isEmpty()) {
String spath = FileOperateHelper.addLastSeparator(Configs.SQL_SCRIPT_PATH_STANDARD) + sqlFile.getAreaCode().toLowerCase();
File file = new File(spath);
file.mkdir();
standardPath = spath + File.separator + "Checkout_Indicate_" + sqlFile.getAreaCode().toLowerCase() + "_" + sqlFile.getSysCode() + ".sql";
}
String lastPath = sqlFile.getCkIndicateStatusPathLast();
if(!FileOperateHelper.singleFileMove(lastPath, standardPath)){
errlist.add(lastPath);
}
}
}
errMap.put("nosqlfile", errlist);
return errMap;
}
}

@ -73,4 +73,9 @@ public class Configs {
*
*/
public static int dataBefore = 6;
/**
*
*/
public static int NUM_ONE_IMPORT_EXCEL = 12;
}

@ -77,6 +77,8 @@ public class ConfigsLoader implements ServletContextListener {
Configs.dataBefore = Integer.valueOf(properties.getProperty("dataBefore"));
Configs.NUM_ONE_IMPORT_EXCEL = Integer.valueOf(properties.getProperty("numOneImportExcel"));
HttpClientConstant.URL_IP_PORT = properties.getProperty("HttpClientConstant_URL_IP_PORT").trim();
Constant.hostIp=properties.getProperty("gfs_control_ip").trim();

@ -6,6 +6,7 @@ import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Properties;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
@ -79,6 +80,40 @@ public class FileOperateHelper {
}
}
}
/**
*
*
* @param path
* @param message
*/
public static void fileReWriteGBK(String path, String message) {
if (null == path || "".equals(path)) {
return;
}
FileOutputStream out = null;
try {
File file = new File(path);
file.delete();
file.createNewFile();
out = new FileOutputStream(file, true); // 如果追加方式用true
StringBuffer sb = new StringBuffer();
sb.append(message);
out.write(sb.toString().getBytes("GBK"));
out.close();
} catch (IOException e) {
log.error(e.getStackTrace());
}
finally{
if (null != out) {
try {
out.close();
} catch (IOException e) {
log.error(e.getStackTrace());
}
}
}
}
/**
*
@ -115,7 +150,7 @@ public class FileOperateHelper {
}
/**
*
* -GBK
* @param path
* @return
*/
@ -131,7 +166,7 @@ public class FileOperateHelper {
if (!file.exists())
return "";
fis = new FileInputStream(file);
BufferedReader br = new BufferedReader(new InputStreamReader(fis));
BufferedReader br = new BufferedReader(new InputStreamReader(fis,"GBK"));
while ((tempString = br.readLine()) != null) {
sb.append(tempString+"\n");
}
@ -165,7 +200,8 @@ public class FileOperateHelper {
if (path.length() < 1) {
return path;
}
Pattern pattern2 = Pattern.compile(File.separator+"$");
String sep = "\\"+File.separator;
Pattern pattern2 = Pattern.compile(sep+"$");
Matcher matcher2 = pattern2.matcher(path);
if (matcher2.find()) {
path = path.substring(0, path.length()-1);
@ -173,4 +209,21 @@ public class FileOperateHelper {
}
return path;
}
/**
* @param srcPath
* @param dstPath
* @return
*/
public static boolean singleFileMove(String srcPath, String dstPath){
boolean isSuccess = false;
File dstfile = new File(dstPath);
dstfile.delete();
File srcfile = new File(srcPath);
if(srcfile.exists()){
// windows linux下通用的 迁移数据
isSuccess = srcfile.renameTo(dstfile);
}
return isSuccess;
}
}

@ -17,10 +17,10 @@ public class ZipCompressUtils {
Properties pro = System.getProperties();
String osName = pro.getProperty("os.name");
if("Linux".equals(osName)||"linux".equals(osName)){
if(osName.contains("Linux")||osName.contains("linux")){
ProcessMyUtil.execCmdWaitAcquiescent("zip -r "+ FileOperateHelper.addLastSeparator(Configs.PACKAGE_DOWNLOAD_PATH) +"package.zip " + FileOperateHelper.addLastSeparator(Configs.PACKAGE_DOWNLOAD_PATH) + Configs.PACKAGE_NAME);
}
else if ("Windows".equals(osName) || "windows".equals(osName) ) {
else if (osName.contains("Windows") || osName.contains("windows")) {
// windows下压缩
try {
// 解决中文文件夹名乱码的问题

@ -163,9 +163,9 @@ public class ExcelOperation {
XSSFCell cell = null;
//excel总行数
int rowNum = sheet.getLastRowNum();
row = sheet.getRow(0);
//excel总列数
int colNum = row.getPhysicalNumberOfCells();
// row = sheet.getRow(excelInitRow);
// //excel总列数
// int colNum = row.getPhysicalNumberOfCells();
// 填充数据的类的 属性个数
int objColl = classz.getDeclaredFields().length;
//如果有数据

Loading…
Cancel
Save