A.updateB.insertC.queryForObjectD.queryForList
单项选择题Spring容器读取db.properties文件的配置是()
A.<property name="driverClass"value="${jdbc.driverClass}"></property>B.<property name="jdbcUrl"value="${jdbc.jdbcUrl}"></property>C.<context:property-placeholder location="classpath:db.properties"/>D.<property name="password"value="${jdbc.password}"></property>
单项选择题spring开启扫描注解的功能是()
A.<property name="driverClass"value="com.mysql.jdbc.Driver"></property>B.<context:component-scan base-package="com.mhys"></context:component-scan>C.<property name="user"value="root"></property>D.<property name="jdbcUrl"value="jdbc:mysql://127.0.0.1:3306/mysql"></property>
单项选择题关于@PostConstruct说法错误的是()
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(注释的方法)