java – spring-nullpointerexception-无法在无注释类中访问自动连接的带注释的服务(或dao)

我有这个问题,我无法解决.

从我的@Controller,我可以轻松访问我自动连接的@Service类,并且没有问题.
但是当我从没有注释的单独类中执行此操作时,它会给我一个NullPointerException.

我的控制器(工程) –

@Controller
 public class UserController {
 @Autowired
 UserService userService;...

我独立的Java类(不工作) –

public final class UsersManagementUtil {
  @Autowired
  UserService userService;

要么

@Autowired
UserDao userDao;

userService或userDao始终为null!
只是尝试其中任何一个有效.

我的组件扫描设置具有用于扫描的根级别包,因此应该没问题.

我的servlet上下文 –

factorybean">
    sql">${hibernate.show_sql}

任何线索?

最佳答案
Spring Reference 3.0

By default,classes annotated with
@Component,@Repository,@Service,
@Controller,or a custom annotation
that itself is annotated with
@Component are the only detected
candidate components.

UsersManagementUtil应根据您的需要使用其中一个进行注释.

相关文章

Spring Cloud为Spring Boot应用程序提供Netflix OSS集成。 提供的功能模块包括服务发现(Eureka),断路...
Spring Cloud 学习笔记;maven配置;入门学习;基于Spring Boot 实现;服务端配置,客户端配置;
可以毫不夸张地说,这篇文章介绍的 Spring/SpringBoot 常用注解基本已经涵盖你工作中遇到的大部分常用的...
Spring中各种方式进行日期时间处理,有作用于单个实体的,也有作用于全局的,有作用于请求入参的,有作...
跨域资源共享(Cross-origin resource sharing)(CORS)是W3C的标准,大部分的浏览器都实现了这个标准...
Spring Boot使创建基于Spring的应用程序变得轻松,大部分的SpringBoot应用程序都只需要很少的Spring配置...