Maxence
Maxence
JCHJava Community | Help. Code. Learn.
Created by Maxence on 3/27/2025 in #java-help
JWT & Spring Boot
I tried but I don't speak fluent english and as I said I don't understand how it really work but ok I will manage
14 replies
JCHJava Community | Help. Code. Learn.
Created by Maxence on 3/27/2025 in #java-help
JWT & Spring Boot
I do not understand what I should do. I nedd a token and all the informations about user
14 replies
JCHJava Community | Help. Code. Learn.
Created by Maxence on 3/27/2025 in #java-help
JWT & Spring Boot
last try lol
14 replies
JCHJava Community | Help. Code. Learn.
Created by Maxence on 3/27/2025 in #java-help
JWT & Spring Boot
If you need more information to answer please feel free to ask
14 replies
JCHJava Community | Help. Code. Learn.
Created by Maxence on 3/25/2025 in #java-help
Spring boot
thanks for your help
39 replies
JCHJava Community | Help. Code. Learn.
Created by Maxence on 3/25/2025 in #java-help
Spring boot
thanks
39 replies
JCHJava Community | Help. Code. Learn.
Created by Maxence on 3/25/2025 in #java-help
Spring boot
I don't understand why I didn't have this, because when I create my project with IntellJ, I choose Lombok, so why it doesnt add all the dependencies need ?
39 replies
JCHJava Community | Help. Code. Learn.
Created by Maxence on 3/25/2025 in #java-help
Spring boot
It seems to work !! Thank you !
39 replies
JCHJava Community | Help. Code. Learn.
Created by Maxence on 3/25/2025 in #java-help
Spring boot
No description
39 replies
JCHJava Community | Help. Code. Learn.
Created by Maxence on 3/25/2025 in #java-help
Spring boot
it doesnt change anything
39 replies
JCHJava Community | Help. Code. Learn.
Created by Maxence on 3/25/2025 in #java-help
Spring boot
I have to put the four ?
39 replies
JCHJava Community | Help. Code. Learn.
Created by Maxence on 3/25/2025 in #java-help
Spring boot
I try
39 replies
JCHJava Community | Help. Code. Learn.
Created by Maxence on 3/25/2025 in #java-help
Spring boot
Oh I just realize that I don't use getters with the other model so I can't have this error
39 replies
JCHJava Community | Help. Code. Learn.
Created by Maxence on 3/25/2025 in #java-help
Spring boot
on another model, @Data works but not with User
39 replies
JCHJava Community | Help. Code. Learn.
Created by Maxence on 3/25/2025 in #java-help
Spring boot
39 replies
JCHJava Community | Help. Code. Learn.
Created by Maxence on 3/25/2025 in #java-help
Spring boot
@Service
@RequiredArgsConstructor
public class UserService implements UserDetailsService {

private final UserRepository userRepository;
/**
* @note username prend ici l'email
* @param username
* @return
* @throws UsernameNotFoundException
*/
@Override
public UserDetails loadUserByUsername(String username) throws UsernameNotFoundException {
User user = userRepository.findByEmail(username);
if (user == null) {
throw new UsernameNotFoundException("User not found with email: " + username);
}
return new org.springframework.security.core.userdetails.User(
user.getEmail(),
user.getPassword(),
Collections.singletonList(new SimpleGrantedAuthority(user.getRole()))
);
}
}
@Service
@RequiredArgsConstructor
public class UserService implements UserDetailsService {

private final UserRepository userRepository;
/**
* @note username prend ici l'email
* @param username
* @return
* @throws UsernameNotFoundException
*/
@Override
public UserDetails loadUserByUsername(String username) throws UsernameNotFoundException {
User user = userRepository.findByEmail(username);
if (user == null) {
throw new UsernameNotFoundException("User not found with email: " + username);
}
return new org.springframework.security.core.userdetails.User(
user.getEmail(),
user.getPassword(),
Collections.singletonList(new SimpleGrantedAuthority(user.getRole()))
);
}
}
39 replies
JCHJava Community | Help. Code. Learn.
Created by Maxence on 3/25/2025 in #java-help
Spring boot
@Configuration
@EnableWebSecurity
@RequiredArgsConstructor
public class SecurityConfig {

private final UserService userService;


@Bean
public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Exception {
return http
.csrf(AbstractHttpConfigurer::disable)
.authorizeHttpRequests(authorizeRequests ->
authorizeRequests.requestMatchers(
"/api/users/login",
"/api/users/register"
).permitAll().anyRequest().authenticated())
.build();
}

@Bean
public PasswordEncoder passwordEncoder() {
return new BCryptPasswordEncoder();
}

/**
* @brief Permet d'identifier l'utilisateur avec son email et son mot de passe
* @param http
* @param passwordEncoder
* @return
* @throws Exception
*/
@Bean
public AuthenticationManager authenticationManager(HttpSecurity http, PasswordEncoder passwordEncoder) throws Exception {
DaoAuthenticationProvider daoAuthenticationProvider = new DaoAuthenticationProvider();
daoAuthenticationProvider.setUserDetailsService(userService);
daoAuthenticationProvider.setPasswordEncoder(passwordEncoder);
return new ProviderManager(daoAuthenticationProvider);

/*
AuthenticationManagerBuilder auth = http.getSharedObject(AuthenticationManagerBuilder.class);
auth.userDetailsService(userService).passwordEncoder(passwordEncoder);
return auth.build();
*/
}
}
@Configuration
@EnableWebSecurity
@RequiredArgsConstructor
public class SecurityConfig {

private final UserService userService;


@Bean
public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Exception {
return http
.csrf(AbstractHttpConfigurer::disable)
.authorizeHttpRequests(authorizeRequests ->
authorizeRequests.requestMatchers(
"/api/users/login",
"/api/users/register"
).permitAll().anyRequest().authenticated())
.build();
}

@Bean
public PasswordEncoder passwordEncoder() {
return new BCryptPasswordEncoder();
}

/**
* @brief Permet d'identifier l'utilisateur avec son email et son mot de passe
* @param http
* @param passwordEncoder
* @return
* @throws Exception
*/
@Bean
public AuthenticationManager authenticationManager(HttpSecurity http, PasswordEncoder passwordEncoder) throws Exception {
DaoAuthenticationProvider daoAuthenticationProvider = new DaoAuthenticationProvider();
daoAuthenticationProvider.setUserDetailsService(userService);
daoAuthenticationProvider.setPasswordEncoder(passwordEncoder);
return new ProviderManager(daoAuthenticationProvider);

/*
AuthenticationManagerBuilder auth = http.getSharedObject(AuthenticationManagerBuilder.class);
auth.userDetailsService(userService).passwordEncoder(passwordEncoder);
return auth.build();
*/
}
}
39 replies
JCHJava Community | Help. Code. Learn.
Created by Maxence on 3/25/2025 in #java-help
Spring boot
Here the code with SecurityConfig
39 replies