Angular 6.x /设置jsessionid cookie

时间:2018-07-30 19:53:57

标签: angular spring-boot oauth jsessionid angular-http-interceptors

我使用java和springboot 2.x开发了我的应用程序后端,另一方面,我有我的角度应用程序。我还使用OAuth2协议登录,我需要登录到Cookie后保存Google提供的JSESSION ID,然后将其在每个请求中发送给后端应用。我读到有关使用HttpInterceptor的信息,但无法解决。 有什么帮助吗?谢谢

2 个答案:

答案 0 :(得分:2)

角度HTTPInterceptor是最合适的解决方案

您可以按照以下步骤使用它:

1:构建HTTPInterceptor (@ Injectable服务):

@Injectable()
export class SpringbootInterceptor implements HttpInterceptor {
  constructor(public auth: AuthService) {}
  intercept(request: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>> {

    // Clone the request to add the new header
    const clonedRequest = req.clone({ headers: req.headers.set('Set-Cookie', 'jsessionid=' + this.auth.getJSessionId()) });

    // Pass control to the next request
    return next.handle(clonedRequest);
  }
}

请注意, .clone()方法将添加作为参数提供的信息。

2:为您的NgModule提供者设置拦截器

@NgModule({
  bootstrap: [AppComponent],
  imports: [...],
  providers: [
    {
      provide: HTTP_INTERCEPTORS,
      useClass: SpringbootInterceptor,
      multi: true
    }
  ]
})

现在,来自NgModule的任何请求都在 SpringbootInterceptor 中设置标头。

您可以在以下位置查看更多信息:

答案 1 :(得分:1)

最简单的解决方案:

constructor(public restProvider: RestProvider) { }
  intercept(request: HttpRequest<any>, next: HttpHandler):
  Observable<HttpEvent<any>> {
  if (this.restProvider.getToken() != null) {
    const clonedRequest = request.clone({
      headers: request.headers.set('X-Requested-With', 'XMLHttpRequest')
    });
  }
}