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 ?
22 Replies
JavaBot
JavaBot2w ago
This post has been reserved for your question.
Hey @Maxence! Please use /close or the Close Post button above when your problem is solved. Please remember to follow the help guidelines. This post will be automatically marked as dormant after 300 minutes of inactivity.
TIP: Narrow down your issue to simple and precise questions to maximize the chance that others will reply in here.
Maxence
MaxenceOP2w ago
Here the code with SecurityConfig
@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();
*/
}
}
ayylmao123xdd
ayylmao123xdd2w ago
show the user service code
Maxence
MaxenceOP2w ago
@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()))
);
}
}
ayylmao123xdd
ayylmao123xdd2w ago
can you show your lombok configuration in pom
Maxence
MaxenceOP2w ago
on another model, @Data works but not with User
ayylmao123xdd
ayylmao123xdd2w ago
what if instead of data you use @Getter @Setter @NoArgsConstructor @AllArgsConstructor
Maxence
MaxenceOP2w ago
Oh I just realize that I don't use getters with the other model so I can't have this error I try I have to put the four ?
ayylmao123xdd
ayylmao123xdd2w ago
yes comment out @data and put these four and if that doesnt work
Maxence
MaxenceOP2w ago
it doesnt change anything
ayylmao123xdd
ayylmao123xdd2w ago
<path>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${org.projectlombok.version}</version>
</path>
<path>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${org.projectlombok.version}</version>
</path>
in your annotation processor path add the version tags
<properties>
<org.projectlombok.version>1.18.30</org.projectlombok.version>
</properties>
<properties>
<org.projectlombok.version>1.18.30</org.projectlombok.version>
</properties>
add to properties maybe that is the problem
Maxence
MaxenceOP2w ago
here ?
No description
ayylmao123xdd
ayylmao123xdd2w ago
yea and in properties add this
<org.projectlombok.version>1.18.30</org.projectlombok.version>
<org.projectlombok.version>1.18.30</org.projectlombok.version>
and reload the project
Maxence
MaxenceOP2w ago
It seems to work !! Thank you !
JavaBot
JavaBot2w ago
If you are finished with your post, please close it. If you are not, please ignore this message. Note that you will not be able to send further messages here after this post have been closed but you will be able to create new posts.
ayylmao123xdd
ayylmao123xdd2w ago
heres a gif for u
Maxence
MaxenceOP2w ago
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 ? thanks
ayylmao123xdd
ayylmao123xdd2w ago
idk maybe its a bug
Maxence
MaxenceOP2w ago
thanks for your help
JavaBot
JavaBot2w ago
Post Closed
This post has been closed by <@429241766257098752>.

Did you find this page helpful?