gpt4 book ai didi

java - @Autowired 在 Spring Security 中不起作用

转载 作者:太空宇宙 更新时间:2023-11-04 07:02:42 25 4
gpt4 key购买 nike

我正在 Spring Web MVC 项目中使用 Java 配置来实现 Spring Security,并且由于某种原因,@Autowired 注释没有在我的安全配置类中注入(inject)字段。我发现this SO 上的问题非常相似,但我的设置要简单得多,并且接受的答案根本不适用于我的情况。

作为引用,我遵循了 Spring 自己的安全文档 ( here ) 的前三章,并且很快就可以进行内存中身份验证。然后我想切换到 JDBC 身份验证并使用 @Autowired 注释注入(inject) DataSource (如 this example 所示)。但是,我收到此错误:

org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'securityConfig': Injection of autowired dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: Could not autowire field: private javax.sql.DataSource com.tyedart.web.config.security.SecurityConfig.dataSource; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type [javax.sql.DataSource] found for dependency: expected at least 1 bean which qualifies as autowire candidate for this dependency. Dependency annotations: {@org.springframework.beans.factory.annotation.Autowired(required=true)}

这是我的安全配置类。正如您所看到的,我正在通过显式查找我的数据源来解决该问题:

@Configuration
@EnableWebMvcSecurity
public class SecurityConfig extends WebSecurityConfigurerAdapter {

// @Autowired
// private DataSource dataSource;

// @Autowired
// public PasswordEncoder passwordEncoder;

@Autowired
public void configureGlobal(AuthenticationManagerBuilder auth) throws Exception {

InitialContext ctx = new InitialContext();
DataSource dataSource = (DataSource) ctx.lookup("java:/comp/env/jdbc/TyedArtDB");

PasswordEncoder passwordEncoder = new BCryptPasswordEncoder();

auth
.jdbcAuthentication()
.dataSource(dataSource)
.passwordEncoder(passwordEncoder);
}

@Override
public void configure(HttpSecurity http) throws Exception {
http
.authorizeRequests()
.antMatchers("/manage/**").hasRole("ADMIN")
.and()
.formLogin();
}
}

这是我非常简单的 root-context.xml:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:jee="http://www.springframework.org/schema/jee"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee.xsd">

<!-- Root Context: defines shared resources visible to all other web components -->

<jee:jndi-lookup id="dataSource" jndi-name="jdbc/TyedArtDB"/>

<bean id="passwordEncoder" class="org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder"/>

</beans>

我做错了什么?

最佳答案

添加<context:component-scan base-package="your.package.where.your.bean.is"/>在 root-context.xml 中

您可以取消注释字段声明中的 @Autowired 并将其从构造函数中删除。您可以找到更多信息here

如果您@Autowired一个bean,不要忘记使用 new 删除初始化.

关于java - @Autowired 在 Spring Security 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21869416/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com