- @org.springframework.beans.factory.annotation.Value(value=#{@autowiredWebSecurityConfigurersIgnoreParents.getWebSecurityConfigurers()})
时间: 2024-05-22 19:15:21 浏览: 115
spring的annotation的autowired
@org.springframework.beans.factory.annotation.Value(value=是Spring框架中的一个注解,用于将配置文件中的属性值注入到Java类中的属性中。该注解的参数value用于指定配置文件中的属性名称,可以使用${}占位符来表示属性值的动态替换。使用该注解可以方便地实现Spring中的依赖注入。
阅读全文