WebSecurityConfigurerAdapter WebMvcConfigurer
时间: 2024-03-25 16:31:48 浏览: 88
springboot:springboot学习百里香WebSecurityConfigurerAdapter
WebSecurityConfigurerAdapter是Spring Security提供的一个适配器类,用于配置Spring Security的安全性。它提供了一些方法,可以用来配置Spring Security的行为,例如配置用户认证、授权、跨域等。在使用Spring Security时,我们可以继承WebSecurityConfigurerAdapter类,并重写其中的方法来实现自定义的安全配置。
WebMvcConfigurer是Spring MVC提供的一个接口,用于配置Spring MVC的行为。它提供了一些方法,可以用来配置Spring MVC的行为,例如配置视图解析器、拦截器、静态资源等。在使用Spring MVC时,我们可以实现WebMvcConfigurer接口,并重写其中的方法来实现自定义的MVC配置。同时,WebMvcConfigurerAdapter是WebMvcConfigurer的实现类,它提供了一些默认的空方法,方便我们只需要重写需要的方法即可。但是需要注意的是,WebMvcConfigurerAdapter已经被废弃,建议直接实现WebMvcConfigurer接口。
阅读全文