我已经在Stackoverflow上阅读了很多关于自动装配的问题,但我仍然无法理解为什么我的自动装配不起作用。
我有一个标准的目录结构:
com.mycompany
|-controller
|-service
|-model
当我从控制器注入服务时,一切正常。但是当我尝试为{spring}安全提供UserDetailService
的自定义实现时,它失败了:
@Service
public class MyCustomUserDetailService implements UserDetailsService {
@Autowired
private UserService userService; //This attribute remains null
@Override
public UserDetails loadUserByUsername(String email) throws UsernameNotFoundException {
try {
User userByEmail = userService.findUserByEmail(email); //NullPointerException
return new UserDetailsAdapter(userByEmail);
} catch(NoResultException e) {
return null;
}
}
}
UserService
是一个非常简单的服务,使用@Service
进行了调整:
import org.springframework.stereotype.Service;
@Service
public class UserService {
[...]
}
注意:从UserController实例化时,UserService正确自动装配:
@RestController
@RequestMapping("/user")
public class UserController {
@Autowired
private UserService service; //This one works!
这是dispatcher-servlet.xml(参见组件扫描):
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd">
<context:component-scan base-package="com.mycompany"/>
<tx:annotation-driven/>
<mvc:annotation-driven/>
</beans>
以下是Spring上下文的相关部分:
<beans:bean id="customUserDetailService" class="com.mycompany.service.customUserDetailService"/>
<authentication-manager>
<authentication-provider user-service-ref="customUserDetailService">
</authentication-provider>
</authentication-manager>
有什么想法吗?
答案 0 :(得分:3)
我很确定您的问题与您的bean由DispatcherServlet
上下文而不是根上下文管理的事实有关。通过将<context:component-scan base-package="com.mycompany"/>
置于DispatcherServlet
上下文中,在DispatcherServlet
上下文中扫描的所有Bean都将由MyCustomUserDetailService
上下文管理,并且根管理上下文无法查看DispatcherServlet
bean。
DispatcherServlet
是根上下文的子项,它允许将根上下文中的核心bean注入到视图层bean(如控制器)中。可见性只是一种方式,你不能将UserController
上下文中的bean从根上下文管理到bean管理,这就是为什么它在MyCustomUserDetailService
但不在<context:component-scan base-package="com.mycompany"/>
中工作的原因。
将{{1}}标记移动到根上下文(Spring上下文)应该可以解决问题。