forward:/searchemployees
redirect :/searchemployees
/searchemployees 之间的区别 :
比较强行的可以理解为:直接return 是一个静态的,而redirect和forward则是一种动态的
我们都知道,在一般情况下,控制器方法返回的字符串都会被当做逻辑视图名来处理。
但是当字符串带有“forward”或者“redirect”前缀时,则对他们进行特殊处理。把“forward”与“redirect”当成指示符,其后的字符串
作为URL来处理。
参考了这些博客:https://blog.csdn.net/x_iya/article/details/71308022
https://blog.csdn.net/alleni123/article/details/84497633
和https://blog.csdn.net/wx_csdn123/article/details/103353884