相对路径:
在springMvc中相对路径就是相对于当前路径
例如:http://localhost:8081/console/index.action 当前相对路径就是http://localhost:8081/console
在springMvc中不管是forward:还是redirect:后面不以斜杠/开头的为相对路径
绝对路径:
在springMvc中绝对路径是从项目名后开始算, 如果没有项目名从端口号后开始算
在springMvc中不管是forward:还是redirect:后面以斜杠/开头的为绝对路径
例如:http://localhost:8081/console/index.action 当前绝对路径就是http://localhost:8081