Spoiled_duoduo 2021-12-27 01:21 采纳率: 50%
浏览 966
已结题

RestTemplate报ResourceAccessException的问题,求解答

2021-12-27 00:53:46.436 ERROR 7760 --- [nio-9093-exec-1] o.a.c.c.C.[.[.[/].[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.springframework.web.client.ResourceAccessException: I/O error on GET request for "localhost://9092/user/out": unknown protocol: localhost; nested exception is java.net.MalformedURLException: unknown protocol: localhost] with root cause

@RestController
@RequestMapping("/consumer")
public class ConsumerController {

    private final RestTemplate restTemplate;

    public ConsumerController(RestTemplate restTemplate) {
        this.restTemplate = restTemplate;
    }
    @RequestMapping("/find")
    public String findAll(){
        String url="http://localhost://9092/user/out";
        String str = restTemplate.getForObject(url, String.class);
        System.out.println(str);
        return str;
    }
}

  • 写回答

2条回答 默认 最新

  • CSDN专家-sinJack 2021-12-27 08:02
    关注
    
    http://localhost:9092/user/out
    

    url是这么写吧

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论 编辑记录
查看更多回答(1条)

报告相同问题?

问题事件

  • 系统已结题 1月4日
  • 已采纳回答 12月27日
  • 创建了问题 12月27日

悬赏问题

  • ¥15 51单片机使lcd显示器开机闪烁预设字符闪烁3次需要加什么代码
  • ¥50 C# 使用DEVMOD设置打印机首选项
  • ¥15 麒麟V10 arm安装gdal
  • ¥15 想用@vueuse 把项目动态改成深色主题,localStorge里面的vueuse-color-scheme一开始就给我改成了dark,不知道什么原因(相关搜索:背景颜色)
  • ¥20 OPENVPN连接问题
  • ¥15 flask实现搜索框访问数据库
  • ¥15 mrk3399刷完安卓11后投屏调试只能显示一个设备
  • ¥100 如何用js写一个游戏云存档
  • ¥15 ansys fluent计算闪退
  • ¥15 有关wireshark抓包的问题