自定义类型转换器的配置中,Bean的类名称必须为org.springframework.context.support.ConversionServiceFactoryBean
举一反三
- 自定义类型转换器需要在配置文件中的Bean中配置一个____属性,列出程序中自定义的所有Converter。
- 注册自定义的Formatter转换器类时,Bean的类名必须是org.springframework.format.support.FormattingConversionServiceFactoryBean,并且其属性为formatters。
- 注册自定义的Formatter转换器类时,Bean的类名必须是org.springframework.format.support.FormattingConversionServiceFactoryBean,并且其属性为formatters。(<br/>) A: 正确 B: 错误
- 在Spring Boot配置类中定义Bean组件时,可以使用@Bean注解的【】属性指定组件名。
- 在web.xml中进行创建Spring Application Context配置错误() A: 必须配置contextConfigLocation应用初始化参数,以告知系统Spring Application Context配置文件的位置 B: 如果不配置contextConfigLocation应用初始化参数,系统会根据默认的名称和地址“/WEB-INF/applicationContext.xml”加载Spring配置文件 C: 必须配置org.springframework.web.context.ContextLoaderListener类监听器,以创建Spring Application Context D: org.springframework.web.context.ContextLoaderListener类由Spring提供