1. 302后能不能继续加载? 2. 如果能,浏览器能加缓存吗?是给origin就缓存了还是新的url请求就直接返回缓存? @GetMapping("api/photo.jpg") @ResponseBody public void ph(HttpServletResponse response) throws IOException { response.sendRedirect("https://tyrell.gitee.io/a/%E8%83%8C%E6%99%AF.png"); } : 能继续加载。