|
|
|
@ -1,6 +1,7 @@
|
|
|
|
|
package com.platform.controller;
|
|
|
|
|
|
|
|
|
|
import java.util.HashMap;
|
|
|
|
|
import java.util.List;
|
|
|
|
|
import java.util.Map;
|
|
|
|
|
|
|
|
|
|
import javax.annotation.Resource;
|
|
|
|
@ -16,12 +17,15 @@ import org.springframework.web.bind.annotation.RequestParam;
|
|
|
|
|
import org.springframework.web.bind.annotation.ResponseBody;
|
|
|
|
|
|
|
|
|
|
import com.base.BaseController;
|
|
|
|
|
import com.platform.dao.GatherOracleDao;
|
|
|
|
|
import com.platform.entities.GatherOracleInfo;
|
|
|
|
|
import com.platform.entities.oracleForm;
|
|
|
|
|
import com.platform.service.ILogRead;
|
|
|
|
|
import com.platform.service.IOracleExtractService;
|
|
|
|
|
import com.platform.service.thread.ThreadExtractOracle;
|
|
|
|
|
import com.platform.service.thread.ThreadGainOracleConnect;
|
|
|
|
|
import com.platform.utils.Configs;
|
|
|
|
|
import com.platform.utils.Constant;
|
|
|
|
|
|
|
|
|
|
/** oracle相关业务
|
|
|
|
|
* @author chen
|
|
|
|
@ -35,30 +39,51 @@ public class OracleController extends BaseController {
|
|
|
|
|
|
|
|
|
|
@Resource(name = "logReadService")
|
|
|
|
|
private ILogRead logReadService;
|
|
|
|
|
|
|
|
|
|
@Resource(name = "gatherOracleDao")
|
|
|
|
|
private GatherOracleDao gatherOracleDao;
|
|
|
|
|
|
|
|
|
|
@RequestMapping(value = "/oracle/{name}/StandardExtract", method = RequestMethod.POST)
|
|
|
|
|
@RequestMapping(value = "/oracle/{id}/StandardExtract", method = RequestMethod.POST)
|
|
|
|
|
public void oracleStandardExtract(HttpServletRequest res, HttpServletResponse req,
|
|
|
|
|
@RequestBody oracleForm form) throws Exception {
|
|
|
|
|
Configs.CONSOLE_LOGGER.error("/oracle/{name}/StandardExtract");
|
|
|
|
|
Configs.CONSOLE_LOGGER.info("/oracle//StandardExtract");
|
|
|
|
|
// res.setCharacterEncoding("UTF-8");
|
|
|
|
|
Configs.CONSOLE_LOGGER.info(form.getInneed().get(0).getName());
|
|
|
|
|
boolean isConnect = false;
|
|
|
|
|
//5秒内是否能获得oracle连接,否则认为超时。
|
|
|
|
|
if (null != form.getTarget()) {
|
|
|
|
|
ThreadGainOracleConnect thOrcl = new ThreadGainOracleConnect(form, OracleExtract);
|
|
|
|
|
thOrcl.start();
|
|
|
|
|
for (int i = 0; i < 10; i++) {
|
|
|
|
|
Thread.sleep(400);
|
|
|
|
|
isConnect = thOrcl.isConnect();
|
|
|
|
|
if (isConnect) {
|
|
|
|
|
// 汇总库的信息
|
|
|
|
|
GatherOracleInfo oracleInfo = null;
|
|
|
|
|
List<GatherOracleInfo> oracleConnects = gatherOracleDao.selectAllOracle();
|
|
|
|
|
for (GatherOracleInfo info : oracleConnects) {
|
|
|
|
|
//抽取标准表的汇总库
|
|
|
|
|
if (Constant.ORACLE_EXTRACT_TYPE_ONE.equals(info.getType())) {
|
|
|
|
|
oracleInfo = info;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
if (thOrcl.isExcept()) {
|
|
|
|
|
}
|
|
|
|
|
if (null == oracleInfo) {
|
|
|
|
|
isConnect = false;
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
form.setTarget(oracleInfo);
|
|
|
|
|
ThreadGainOracleConnect thOrcl = new ThreadGainOracleConnect(form, OracleExtract);
|
|
|
|
|
thOrcl.start();
|
|
|
|
|
for (int i = 0; i < 10; i++) {
|
|
|
|
|
Thread.sleep(400);
|
|
|
|
|
isConnect = thOrcl.isConnect();
|
|
|
|
|
if (isConnect) {
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
Thread.sleep(100);
|
|
|
|
|
else {
|
|
|
|
|
if (thOrcl.isExcept()) {
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
Thread.sleep(100);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
if (isConnect)
|
|
|
|
|
req.setStatus(200);
|
|
|
|
|