Spring注入不适用于不同的服务类

发布于 2024-10-26 20:50:52 字数 688 浏览 1 评论 0原文

@Service("registrationService")
@Transactional
public class RegistrationService {

@Resource(name="registrationDAO")
 public RegistrationDAO registrationDAO;

在控制器中有类,我可以毫无问题地访问registrationService和registrationDAO。

我有另一个类

@Service("securityService")
public class SecurityService implements UserDetailsService {

 protected static Logger logger = Logger.getLogger("service");

 @Resource(name="registrationDAO")
 public RegistrationDAO registrationDAO;


  public String test(){
        logger.debug(registrationDAO.findUserByID(1) );
    return "Testing";
  }

现在如果我在控制器中调用测试函数,那么它会在registrationDAO上给出空指针异常

I have class

@Service("registrationService")
@Transactional
public class RegistrationService {

@Resource(name="registrationDAO")
 public RegistrationDAO registrationDAO;

In the Controller i can access registrationService and registrationDAO with no problem.

I have another class

@Service("securityService")
public class SecurityService implements UserDetailsService {

 protected static Logger logger = Logger.getLogger("service");

 @Resource(name="registrationDAO")
 public RegistrationDAO registrationDAO;


  public String test(){
        logger.debug(registrationDAO.findUserByID(1) );
    return "Testing";
  }

Now if i call test function in controller then it gives null pointer exception on registrationDAO

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

享受孤独 2024-11-02 20:50:52

你所有的@Service@Repository@Controller@Component(等等)注释的类都必须是spring - 管理自动装配工作。确保它们被 spring 类路径扫描拾取:

<context:component-scan base-package="com.company" />

在某些情况下,按类型自动装配的 @Autowire 可以有效避免您提供的 name 参数@Resource

All your @Service, @Repository, @Controller, @Component (etc.) annotated class must be spring-managed for autowiring to work. Make sure they are picked up by spring classpath scanning:

<context:component-scan base-package="com.company" />

In some cases @Autowire, which does autowiring by type, can be useful to avoid the name argument you're supplying with the @Resource.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文