@Controller@RequestMapping("/first")public class FirstController{@RequestMapping("/first")public String handleRequest(HttpServletRequest request, HttpServletResponse response, Model model) throws Exception {model.addAttribute("msg", "这是我的第一个Spring MVC程序");return "first";}}
A. http://localhost:8080/chapter12/hello/firstController
B. http://localhost:8080/chapter12/first/firstController
C. http://localhost:8080/chapter12/first/first
D. http://localhost:8080/chapter12/hello/firs
查看答案
下面选项中不属于Jackson的开源包的是
A. jackson-annoations-2.8.8.jar
B. jackson-core-2.8.8.jar
C. jackson-databind-2.8.8.jar
D. jackson-data-2.8.8.jar
RequestMapping注解类型的作用是
A. 用于映射一个请求或一个方法
B. 用于映射一个控制器类
C. 用于映射请求参数
D. 用于映射请求类型
以下有关Spring MVC数据绑定中集合数据绑定的说法正确的是
A. 批量删除用户操作时,前端请求传递过来的参数就会包含多个相同类型的数据,此时可以采用集合类型数据绑定的形式
B. 使用集合数据绑定需要后台方法中定义一个集合类型参数来绑定前端请求参数
C. 绑定数组与绑定集合页面传递的参数相同,只是后台接收方法的参数不同
D. 在使用集合数据绑定时,后台方法中不支持直接使用集合形参进行数据绑定
Spring MVC提供了【】注解类型来进行间接数据绑定