两个原因导致Spring @Autowired注入的组件为空

本文分析了Spring @Autowired组件为空的两个原因:手动实例化和未使用@Component注解。通过避免手动创建对象并确保所有需要自动注入的类都正确标记,可以防止NullPointerException。提供了解决方案,即在Controller中使用@Autowired自动注入Service。
摘要由CSDN通过智能技术生成

@Controller

public class Controller {

@GetMapping(“/example”)

public String example() {

MyService my = new MyService();

my.doStuff();

}

}

@Service

public class MyService() {

@Autowired

MyRepository repo;

public void doStuff() {

repo.findByName( “steve” );

}

}

@Repository

public interface MyRepository extends CrudRepository<My, Long> {

List findByName( String name );

}

你好,2005呼叫并要求返回他们的代码。好吧,IoC就像是街上的帅小伙子一样,如果你使用的是Spring(自动注入),则需要一直使用它。这是Controller, Service 和 Repository的代码片段,它们将导致NullPointerException。

@Controller

public class Controller {

@GetMapping(“/example”)

public String example() {

MyService my = new MyService();

my.doStuff();

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值