I have WebSecurityConfigurerAdapter
and trying to run my app I’m getting java.lang.ClassNotFoundException: org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter
. But its deprecated, not deleted! Is there any way to force Spring to use deprecated classes?
P.S. Please. do not suggest rewriting it without WebSecurityConfigurerAdapter
@SuppressWarning
doesn’t work
2