第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

spring 從函數(shù)調(diào)用控制器方法

spring 從函數(shù)調(diào)用控制器方法

繁華開(kāi)滿天機(jī) 2023-06-08 20:58:17
我有一個(gè)控制器:-@CrossOrigin(origins = "http://localhost", maxAge = 3600)@RestController@RequestMapping("/user")public class UserController {  @RequestMapping(value = "/login", method = RequestMethod.get)    public String login(@RequestBody User login) throws ServletException{  }}我還有另一GenericFilterBean堂課。這是為了執(zhí)行一些安全功能,例如驗(yàn)證令牌等。public class JwtFilter extends GenericFilterBean {    public void doFilter(final ServletRequest req, final ServletResponse res, final FilterChain chain)            throws IOException, ServletException {     final HttpServletRequest request = (HttpServletRequest) req;    final HttpServletResponse response = (HttpServletResponse) res;    final String authHeader = request.getHeader("authorization");    if ("OPTIONS".equals(request.getMethod())) {        response.setStatus(HttpServletResponse.SC_OK);        chain.doFilter(req, res);    } else {        if (authHeader == null || !authHeader.startsWith("Bearer ")) {            new ModelAndView("user/login");// this way i am trying to call one controller method.             throw new ServletException("Missing or invalid Authorization header"); // this is throws one exception. This is only for the dev purpose.        }else {            final String token = authHeader.substring(7);            try {                final Claims claims = Jwts.parser().setSigningKey("secretkey").parseClaimsJws(token).getBody();                request.setAttribute("claims", claims);            } catch (final SignatureException e) {                throw new ServletException("Invalid token");            }            chain.doFilter(req, res);        }    }   }}我的問(wèn)題來(lái)自于doFilter我如何調(diào)用控制器方法的方法login此new ModelAndView("user/login");代碼不起作用。所以請(qǐng)建議一些方法來(lái)做到這一點(diǎn)。
查看完整描述

1 回答

?
MM們

TA貢獻(xiàn)1886條經(jīng)驗(yàn) 獲得超2個(gè)贊

作為最佳實(shí)踐,您不應(yīng)該真正將登錄放在獲取請(qǐng)求中。


其次,如果您希望您的過(guò)濾器驗(yàn)證登錄,您可以將它用作中間件/作為方面/或者只在服務(wù)類中編寫驗(yàn)證方法并使用它。


如果你真的想通過(guò)過(guò)濾器調(diào)用端點(diǎn),你可以嘗試使用 rest 模板。


String fooResourceUrl = "http://localhost:8080/user/login";

User userWithLoginCredentials = new User() //Create your user object

HttpEntity<User> request = new HttpEntity<>(userWithLoginCredentials);

RestTemplate restTemplate = new RestTemplate();

ResponseEntity<Foo> response = restTemplate.exchange(fooResourceUrl, HttpMethod.GET, request, User.class);

查看完整回答
反對(duì) 回復(fù) 2023-06-08
  • 1 回答
  • 0 關(guān)注
  • 147 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)