Ver Fonte

更新job

shuzheng há 8 anos atrás
pai
commit
d72c62cd09

+ 0 - 27
zheng-cms/zheng-cms-job/src/main/java/com/zheng/cms/job/controller/UserController.java

@@ -1,27 +0,0 @@
-package com.zheng.cms.job.controller;
-
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
-import org.springframework.stereotype.Controller;
-import org.springframework.web.bind.annotation.RequestMapping;
-
-/**
- * 用户管理
- * Created by shuzheng on 2016/12/10.
- */
-@Controller
-@RequestMapping("/manage/user")
-public class UserController {
-
-	private static Logger _log = LoggerFactory.getLogger(UserController.class);
-
-	/**
-	 * 列表
-	 * @return
-	 */
-	@RequestMapping("/list")
-	public String index() {
-		return "/user/list";
-	}
-
-}

+ 0 - 17
zheng-cms/zheng-cms-job/src/main/webapp/WEB-INF/jsp/404.jsp

@@ -1,17 +0,0 @@
-<%@ page contentType="text/html; charset=utf-8"%>
-<%@ taglib uri="http://java.sun.com/jstl/core_rt" prefix="c"%>
-<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt"%>
-<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn"%>
-<%@ taglib uri="http://www.springframework.org/tags" prefix="spring"%>
-<%@ taglib uri="http://www.springframework.org/tags/form" prefix="form"%>
-<c:set var="basePath" value="${pageContext.request.contextPath}"/>
-<!DOCTYPE html>
-<html>
-<head>
-<meta charset="utf-8"/>
-<title><spring:message code="404"/></title>
-</head>
-<body>
-404
-</body>
-</html>

+ 0 - 43
zheng-cms/zheng-cms-job/src/main/webapp/WEB-INF/jsp/500.jsp

@@ -1,43 +0,0 @@
-<%@ page contentType="text/html; charset=utf-8"%>
-<%@ taglib uri="http://java.sun.com/jstl/core_rt" prefix="c"%>
-<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt"%>
-<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn"%>
-<%@ taglib uri="http://www.springframework.org/tags" prefix="spring"%>
-<%@ taglib uri="http://www.springframework.org/tags/form" prefix="form"%>
-<c:set var="basePath" value="${pageContext.request.contextPath}"/>
-<!DOCTYPE html>
-<html>
-<head>
-<meta charset="utf-8"/>
-<title>500</title>
-</head>
-<body>
-<center style="margin:50px auto">
-	<p>错误代码:500<%//=request.getAttribute("javax.servlet.error.status_code")%></p>
-	<p>您访问的页面有错误!</p>
-	<p>错误原因:${error.message}</p>
-	<p>错误内容:${error}</p>
-	<p><!--页面将在<span id="stime">5</span>秒后-->跳转到<a href="${pageContext.request.contextPath}/">首页</a>!</p>
-</center>
-<%
-/**
-监控出错人的IP
-String ip = request.getHeader(" x-forwarded-for");
-if (ip == null || ip.length() == 0 || " unknown".equalsIgnoreCase(ip)) {
-	ip = request.getHeader(" Proxy-Client-IP"); // 获取代理ip
-}
-if (ip == null || ip.length() == 0 || " unknown".equalsIgnoreCase(ip)) {
-	ip = request.getHeader(" WL-Proxy-Client-IP"); // 获取代理ip
-}
-if (ip == null || ip.length() == 0 || " unknown".equalsIgnoreCase(ip)) {
-	ip = request.getRemoteAddr(); // 获取真实ip
-}
-//out.println(ip+"<br/><br/>你的地址是:<br/><br/>");
-
-Document doc = Jsoup.connect("http://ip.chinaz.com/?IP="+ip).timeout(9000).get();
-Element e = doc.select("#status").first();
-//out.println(e);
-*/
-%>
-</body>
-</html>

+ 0 - 17
zheng-cms/zheng-cms-job/src/main/webapp/WEB-INF/jsp/index.jsp

@@ -1,17 +0,0 @@
-<%@ page contentType="text/html; charset=utf-8"%>
-<%@ taglib uri="http://java.sun.com/jstl/core_rt" prefix="c"%>
-<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt"%>
-<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn"%>
-<%@ taglib uri="http://www.springframework.org/tags" prefix="spring"%>
-<%@ taglib uri="http://www.springframework.org/tags/form" prefix="form"%>
-<c:set var="basePath" value="${pageContext.request.contextPath}"/>
-<!DOCTYPE html>
-<html>
-<head>
-    <meta charset="utf-8"/>
-    <title>首页</title>
-</head>
-<body>
-
-</body>
-</html>