Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I am making an API with Spring, I added the authentication with JWT but the postman does not throw anything enter image description here In the console it does not throw any error either, any suggestion that it could fail? This is my controller

@PostMapping("/authenticate")
public ResponseEntity<AuthenticationResponse> createToken(@RequestBody AuthenticationRequest request){
    try {
        authManager.authenticate(new UsernamePasswordAuthenticationToken(request.getUsername(),request.getPassword()));
        UserDetails userDet=objMarketUserDetails.loadUserByUsername(request.getUsername());
        String jwt=jwtUtil.generateToken(userDet);
        return new ResponseEntity<>(new AuthenticationResponse(jwt),HttpStatus.OK);
    }catch (BadCredentialsException e){
        return new ResponseEntity<>(HttpStatus.FORBIDDEN);
    }
}

REPOSITORY PUBLIC: https://github.com/oscarmaxgithub/MarketSpring


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
3.1k views
Welcome To Ask or Share your Answers For Others

1 Answer

等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share

548k questions

547k answers

4 comments

86.3k users

...