模型服务连接失败
Java
分类
后端框架
难度
未设置
来源数
1
更新时间
2026/03/29 15:43

答案

bean代指的就是那些被IOC交由spring管理的对象。通常可以使用@Component、@Repository、@Controller、@Service来声明。

元信息

审核状态: active
关联来源: 1

来源面经题(0)

这道题目前没有手动沉淀的面经题来源。

来源(1)

Java八股(框架).md

knowledge_note
Question 4: 什么是 Bean? Source answer: bean代指的就是那些被IOC交由spring管理的对象。通常可以使用@Component、@Repository、@Controller、@Service来声明。 Reviewed answer: Bean 是被 Spring IOC 容器管理的对象,通常可通过 @Component、@Service、@Controller、@Repository 等声明。