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
单项选择题关于@Autowired正确的是()
A.@Autowired private Tiger tiger;B.@Autowired=Java private Tiger tiger;C.@Autowired=“Java”private Tiger tiger;D.@Autowired("Java")private Tiger tiger;