wuxw7
2018-05-22 9e0fa31a2b81a9d2fd2588b78b6de637f0352639
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package com.java110.console.controller;
 
import com.java110.core.base.controller.BaseController;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
 
import javax.servlet.http.HttpServletRequest;
 
/**
 * 登录 控制类
 * Created by wuxw on 2018/5/2.
 */
@Controller
public class LoginController extends BaseController {
 
 
 
    @RequestMapping(path = "/login",method = RequestMethod.GET)
    public String index(HttpServletRequest request){
        return "login";
    }
 
 
}