Maxence
Maxence
JCHJava Community | Help. Code. Learn.
Created by Maxence on 3/27/2025 in #java-help
JWT & Spring Boot
Hello, I develop a website and I have some questions for the connexion with users. For the back-end, I use Spring Boot and I have this function :
@PostMapping("/login")
public ResponseEntity<?> loginUser(@RequestBody User user) {
User userFound = userRepository.findByEmail(user.getEmail());
if(userFound == null) {
return ResponseEntity.status(HttpStatus.UNAUTHORIZED).body("Email non trouvé");
}

if(!passwordEncoder.matches(user.getPassword(), userFound.getPassword())) {
return ResponseEntity.status(HttpStatus.UNAUTHORIZED).body("Mot de passe incorrect");
}

return ResponseEntity.ok("Login effectué");
}
@PostMapping("/login")
public ResponseEntity<?> loginUser(@RequestBody User user) {
User userFound = userRepository.findByEmail(user.getEmail());
if(userFound == null) {
return ResponseEntity.status(HttpStatus.UNAUTHORIZED).body("Email non trouvé");
}

if(!passwordEncoder.matches(user.getPassword(), userFound.getPassword())) {
return ResponseEntity.status(HttpStatus.UNAUTHORIZED).body("Mot de passe incorrect");
}

return ResponseEntity.ok("Login effectué");
}
I return this because I don't really know what to return. I would like use a JWT token and I search on the web and I don't understand what I have to do. Actually I would like a token and all the informations I need about the user (email, name etc...) , so what can I return and how to convert these datas in VueJS (I use Axios to recover the datas) ?
14 replies
JCHJava Community | Help. Code. Learn.
Created by Maxence on 3/25/2025 in #java-help
Spring boot
Hi, I am a beginner at Spring Boot and I tried to configure my API espcially for user connexion. I have a database which is connected and it works. But I try to create a SecurityConfig and I have this error : java: variable userService not initialized in the default constructor In the code (after this message), I use @RequiredArgsConstructor so it should work... I have a problem with the model User for the database because it says it doesnt find getters but I use @Data with Loombook and it works on another model. Can someone please try to explain me ?
39 replies