1
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Servlet 3.x環境のSpring SecurityでHttpServletRequest#loginでログイン

Last updated at Posted at 2017-05-24

ぐぐると使用例として、例えば、ユーザ登録完了後にそのままログインさせる、というケースがある。この場合、ユーザがフォームなどで明示的にIDとパスワードを入力するのではなく、プログラム的にログインする方法になる。

これの実現には、Servlet 3.0以上では、Spring Securityを設定した上でHttpServletRequest#login (Java(TM) EE 7 Specification APIs)を呼ぶ。

@RequestMapping(...
public void index(HttpServletRequest request) {
    try {
        request.login("username", "password");
    } catch (ServletException e) {}
}

Spring Security Reference - 15.2.2 HttpServletRequest.login(String,String)にあるとおり、Spring SecurityとServlet APIの連携機能によるもの。仕組みとしては、loginメソッドを呼ぶと裏側で現在有効なAuthenticationManagerを使用してログイン処理が行われる、というのようだ。

2021/01/09 追記

他の方法としてAbstractPreAuthenticatedProcessingFilterもある。https://kagamihoge.hatenablog.com/entry/2020/08/02/171003

1
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?