You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
937 B
33 lines
937 B
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8" contentType="text/html;charset=UTF-8"%>
|
|
<%@ page import="com.longj.platform.scheduler.EcsProInfoSyncUtil"%>
|
|
<%
|
|
String path = request.getContextPath();
|
|
String redirectURL = request.getQueryString();
|
|
String basePath = request.getScheme() + "://" + request.getServerName() + ":" + request.getServerPort() + path + "/";
|
|
|
|
try {
|
|
//String companyid = request.getParameter("companyid");
|
|
EcsProInfoSyncUtil.initSyncData();
|
|
} catch (Exception e) {
|
|
e.printStackTrace();
|
|
}
|
|
%>
|
|
|
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
|
<html>
|
|
<head>
|
|
<base href="<%=basePath%>">
|
|
|
|
<title>推送数据中</title>
|
|
|
|
<meta http-equiv="pragma" content="no-cache">
|
|
<meta http-equiv="cache-control" content="no-cache">
|
|
<meta http-equiv="expires" content="0">
|
|
</head>
|
|
|
|
<body>
|
|
<br/><br/>
|
|
推送结果:<br/><br/><br/>
|
|
推送完成!
|
|
</body>
|
|
</html>
|
|
|