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.
 
 
webcrawler/web/src/main/java/org/pqh/controller/AdminController.java

17 lines
416 B

package org.pqh.controller;
import org.pqh.core.util.LogManger;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
/**
* Created by reborn on 2017/9/14.
*/
@Controller
public class AdminController implements LogManger{
@RequestMapping({"indexAction"})
private String index(){
log.info("进入首页");
return "index";
}
}