A.在方法上加该注解会在项目启动的时候执行该方法B.可用于加载数据字典C.可用于定时任务D.在方法上加该注解会在项目结束的时候执行该方法
单项选择题关于@Scope错误的是()
A.Scope("singleton")B.Scope("prototype")C.Scope("response")D.Scope("session")
单项选择题@PostConstruct注解的方法在整个Bean初始化中的执行顺序是()
A.Constructor(构造方法)->@Autowired(依赖注入)->@PostConstruct(注释的方法)B.Constructor(构造方法)->@PostConstruct(注释的方法)->@Autowired(依赖注入)C.@PostConstruct(注释的方法)->Constructor(构造方法)->@Autowired(依赖注入)D.@Autowired(依赖注入)->Constructor(构造方法)->@PostConstruct(注释的方法)
单项选择题Spring中自动装备注解是()
A.@ComponentB.@AutowiredC.@ValueD.@AutoInit
单项选择题Spring中单例模式Bean的关键字是()
A.prototypeB.requestC.singletonD.Session
单项选择题关于@Component正确的是()
A.@Component public class TigerB.@Component private Tiger tigerC.@Component("Tiger")private Tiger tigerD.@Component="Tiger"private Tiger tiger