79112191

Date: 2024-10-22 01:49:13
Score: 4
Natty:
Report link

Can you show me more details about userService’s login function?

Also if you use spring security, check SpringSecurity config.

//ex
@Override
protected void configure(HttpSecurity http) throws Exception {
    http
        .authorizeRequests()
        .antMatchers("/login").permitAll()  
        .anyRequest().authenticated();   
}
Reasons:
  • RegEx Blacklisted phrase (2.5): Can you show me
  • Has code block (-0.5):
  • Contains question mark (0.5):
  • Starts with a question (0.5): Can you
  • Low reputation (1):
Posted by: lohny