侧边栏壁纸
博主头像
落叶人生博主等级

走进秋风,寻找秋天的落叶

  • 累计撰写 130562 篇文章
  • 累计创建 28 个标签
  • 累计收到 9 条评论
标签搜索

目 录CONTENT

文章目录

uri异常,java.net.URISyntaxException

2024-05-12 星期日 / 0 评论 / 0 点赞 / 88 阅读 / 517 字

uri异常,可能是路径中有空格,或者像下面这样<destination> <protocol>http</protocol> <method>POST</method> <timeo

uri异常,可能是路径中有空格,或者像下面这样

<destination>    <protocol>http</protocol>    <method>POST</method>    <timeout>60000</timeout>    <uri>/apiexplorer_server/serviceTest/setUrl    </uri></destination>

<uri></uri>标签没有在一行,改成下面这样就ok 了

<uri>/apiexplorer_server/serviceTest/setUrl</uri>

广告 广告

评论区