| | |
| | | package com.java110.console.controller; |
| | | |
| | | import com.java110.core.base.controller.BaseController; |
| | | import org.slf4j.Logger; |
| | | import org.slf4j.LoggerFactory; |
| | | import org.springframework.stereotype.Controller; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.RequestMethod; |
| | |
| | | @Controller |
| | | public class LoginController extends BaseController { |
| | | |
| | | private final static Logger logger = LoggerFactory.getLogger(LoginController.class); |
| | | |
| | | |
| | | @RequestMapping(path = "/login",method = RequestMethod.GET) |