单项选择题
A.killB.niceC.psD.sleep
A.tail -n 10test.log 查询test.log日志尾部最后10行的日志B.tail -n +10test.log 查询test.log10行之后的所有日志C.header -n 10查询test.log日志尾部最后10行的日志D.cat -n test.log∣grep "debug"查询test.log中关键字"debug"的日志
A.@RestController注解相当于@ResponseBody +@Controller合在一起的作用B.如果只是使用@RestController注解Controller,则结果和使用Controller注解效果一样C.使用Controller注解如果需要若返回json等内容到页面,则需要加@ResponseBody注解D.使用@Controller 注解,在对应的方法上,视图解析器可以解析return 的jsp,html页面,并且跳转到相应页面