java.net.MalformedURLException:无协议:/site/dispatcher.jsp?url=https://somesite.com/some-url

时间:2017-08-24 09:16:48

标签: java jsp jboss weblogic

我正在尝试在将其注销后将页面重定向到基本URL。我正在使用下面的代码

res.sendRedirect("/site/dispatcher.jsp?url=" + url);

其中url是应将页面重定向到的基本URL。到目前为止,这在Jboss7上运行良好,但是当在WebLogic中使用它时它不能正常工作。我收到以下异常:

java.net.MalformedURLException:无协议:/site/dispatcher.jsp?url = https://somesite.com/some-url

以下是weblogic.xml中的配置:

<container-descriptor>

    <show-archived-real-path-enabled>true</show-archived-real-path-enabled>

    <redirect-with-absolute-url>false</redirect-with-absolute-url>

</container-descriptor>

0 个答案:

没有答案