MyBatis中哪些注解可以在注解风格中提供动态SQL语句
A. @InsertProvider
B. @SelectProvider
C. @UpdateProvider
D. @DeleteProvider
查看答案
SpringMVC中可以通过哪些条件来限定处理器的映射关系?
A. 浏览器版本
B. HTTP请求方法
C. URL
D. 特定请求参数的取值
对下面使用Spring依赖注入的代码,下面说法错误的有ApplicationContext context = new ClassPathXmlApplicationContext("chinasofti.xml");Printer printer = (Printer)context.getBean("printer");
A. 配置文件chinasofti.xml位于项目类检索目录下
B. 在chinasofti.xml中定义了一个id或name为printer的bean
C. context.getBean()返回的是printer类型的对象,不需要强制转换类型
D. chinasofti.xml被修改后,context会自动重新加载
在jQuery中,关于ajax()函数的参数描述正确的有
A. type设置请求方式
B. timeout设置请求时间,单位秒
C. async设置是否允许异步执行
D. dataType指定预期服务器返回数据的类型
以下哪些是Redis支持的数据类型?
A. String
B. List
C. Set
D. Sorted Set