问题描述
代码: @RequestMapping("/list/{typeid}")public String list(HttpServletRequest request,@PathVariable Integer typeid){int pn = ServletRequestUtils.getIntParameter(request, "pn", 1);// Integer id = ServletRequestUtils.getIntParameter(request, "id", -1);ImageType type = imageTypeService.get(typeid);Page<ImageGroup> page = imageGroupService.queryList(pn, 10, type);request.setAttribute("page", page);request.setAttribute("type", type);setSearch(request);setRandomList2(request);return "list";}用自己的tomcat访问:localhost:8080/list/1 没有问题部署到购买的空间上去访问 yuming/list/1 却打不开, 报504错这是为什么呢
解决方案
504代表网关无响应 一般的意思就是说你请求到空间了 但空间发给你时超时了(即很可能是没找到你)1、域名映射过去了? 指向对吗?2、访问个静态html/到空间中ping下localhost
时间: 2024-10-26 14:07:02