LoginService主要提供跟登录相关的功能。
//判断是否登录过了 public boolean isLogged(HttpServletRequest req) //用户名,密码登录 public LoginResponseInfoBean login(HttpServletRequest req, HttpServletResponse res, LoginRequestInfoBean loginReqInfo) throws Exception //验证码登录 public LoginResponseInfoBean login(HttpServletRequest req, HttpServletResponse res, LoginCaptchaBean captchaTokenBean) throws Exception //登出 public void logout(HttpServletRequest req, HttpServletResponse res) throws Exception //跨域登录 public CrossDomainResponse crossDomainLogin(HttpServletRequest req, HttpServletResponse res, String username, String password, int validity, String callback) //第三方token登录,这里有个扩展AccessProvider ,这个是验证第三方token的。 public String login(HttpServletRequest req, HttpServletResponse res, String username, String password, String thirdToken) throws Exception //用户名登录 public String login(HttpServletRequest req, HttpServletResponse res, String username) throws Exception //创建token并且储存 public S



