前提・実現したいこと
SpringBootでInterceptorを使って、コントローラーが呼ばれる際に、セッション情報がない場合と、ログインしているユーザーが捜査中に削除された(削除フラグが立っている)際に、ログイン画面に飛ばす処理をしたいのですが、Interceptorがうまく動きません。
ご教授いただけますと幸いです。
発生している問題・エラーメッセージ
Interceptorが呼ばれない、動かない。
該当のInterceptor
public class UserCheckInterceptor extends HandlerInterceptorAdapter { @Autowired UserRepository rep; @Override public boolean preHandle( HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception { if( handler instanceof HandlerMethod ) { HandlerMethod hm = (HandlerMethod) handler; Method method = hm.getMethod(); com.example.demo.annotation.Annotation.NonAuth annotation = (com.example.demo.annotation.Annotation.NonAuth) AnnotationUtils.findAnnotation(method, com.example.demo.annotation.Annotation.NonAuth.class); if (annotation != null) { return true; } HttpSession session = request.getSession(false); try { UserEntity loginuser = (UserEntity)session.getAttribute("loginEmp"); if(loginuser==null) { response.sendRedirect("/login"); return false; } Optional<UserEntity> userData = rep.findById(loginuser.getId()); UserEntity user = userData.get(); if(user==null) { response.sendRedirect("/login"); return false; }else { if(user.getDelete_flag()==1) { response.sendRedirect("/login"); return false; } } }catch(NullPointerException e){ response.sendRedirect("/login"); return false; } return true; } response.sendRedirect("/login"); return false; } }
該当のBeanConfiguration
@Configuration public class BeanConfiguration { @Bean public HandlerInterceptor testInterceptor() throws Exception{ return new UserCheckInterceptor(); } }
該当の WebMvcConfig
public class WebMvcConfig implements WebMvcConfigurer{ @Autowired HandlerInterceptor userCheckInterceptor; @Override public void addInterceptors(InterceptorRegistry registry) { registry.addInterceptor(userCheckInterceptor); } }
試したこと
試しにシスアウトして動作確認などしましたが、Interceptorが動いているのかわかりませんでした。
SpringBoot初心者でして、右も左もわからない状況です。
何卒宜しくお願い致します。
return させている分岐が結構ありますが、どこを通っているかデバッグで確かめましたか?
ブレークポイントをInterceptorクラス内に置いてデバックをしているのですが、止まらないためInterceptorを呼び出せていないと考えています。
testInterceptor と急に名前がtestになっているのは何かしらの意図があるのでしょうか。そこ以外は気になるところはないですが
WebMvcConfigクラスに `@Configuration` がついてないです。
元ネタは https://qiita.com/kyabetsuda/items/78a61bfff859fbc9c63f ですね。
testInterceptorは元ネタがそういう命名なのでそれに引きずられてるのでしょう
お二方とも、ご回答いただきまして誠にありがとうございます。YakumoSaki様のおっしゃる通り、参考にさせていただいたページのコードのままになってしまっていました。
また、@Configurationを付けたことにより、Interceptorが動きました!ありがとうございます。
その際なのですが、CSSやjsが適用されなくなってしまったので触っているのですが、SpringBoot初心者でして苦戦しております。Configurationのクラスを触るのかなというのは調べてわかったのですが、うまく作動しません。もし可能でしたら、こちらについてもご教授いただけますと幸いです。
本件とは別問題に思います。
ヒントとしては「静的リソースの判定」ですね。
ひとまず本件、自身で回答付けて自己解決とされては如何でしょう。
ありがとうございます。そうさせていただきます。
回答1件
あなたの回答
tips
プレビュー