13693261870
2022-09-20 a666b5f9741ef9b21f547d3b2141752a0383c70c
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
26
27
28
29
package org.apereo.cas.web;
 
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.servlet.ModelAndView;
 
/**
 * @author Tanbin
 * @date   2018-12-12
 */
@Controller("serviceValidateController")
public class ServiceValidateController extends AbstractServiceValidateController {
  @RequestMapping(path = {"/serviceValidate"}, method = {RequestMethod.GET})
  @Override
  protected ModelAndView handleRequestInternal(HttpServletRequest request, HttpServletResponse response) throws Exception { 
      //判断用户是否来源地址的service
      
     System.out.print( request.getCookies());
      return super.handleRequestInternal(request, response); }
}
 
 
/* Location:              E:\wuhao\work\cas5.0.3\WebContent\WEB-INF\lib\cas-server-support-validation-5.0.3.jar!/org/apereo/cas/web/ServiceValidateController.class
 * Java compiler version: 8 (52.0)
 * JD-Core Version:       1.0.7
 */