gpt4 book ai didi

http - ERR_TOO_MANY_REDIRECTS 错误你

转载 作者:可可西里 更新时间:2023-11-01 15:20:48 25 4
gpt4 key购买 nike

事实:

我在浏览器 http://localhost:8080/myapp 上请求根应用程序,我的浏览器抛出此错误:错误 310 (net::ERR_TOO_MANY_REDIRECTS): 许多重定向.

环境:

我正在使用 Java 6、Glassfish 2.1、Struts2、Spring 和 Hibernate。

检查:

然后我查看 web.xml,在欢迎列表文件中我有这个:

<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>

那么,让我们检查一下 index.jsp 并发现重定向:

...
<head>
<meta http-equiv="refresh" content="0;url=<%=request.getContextPath()%>/portal/home.do">
...
<link rel="shortcut icon" href="<%=request.getContextPath()%>/img/icono.png" />
</head>
...

然后我们可以转到struts.xml,我们可以看到这个 block :

...
<package name="portal-action" extends="portal-base" namespace="/portal">
<action name="home" method="home" class="beginAction">
<result type="tiles">begin.home</result>
</action>
...

让我们检查 beginAction 类:

...
public String home(){
return SUCCESS;
}
...

我们可以检查tiles.xml:

...
<definition name="begin.welcome" extends=".baseHome">
<put-attribute name="working.region" value="/jsp/common/welcome.jsp" />
</definition>
...

最后我们可以查看整个 welcome.jsp 文件,它只包含:

<%@ taglib prefix="s" uri="/struts-tags"%>
<br />

就是这样!

你对这个问题有什么想法吗?

最佳答案

很明显,您的应用似乎陷入了重定向循环。查看您的配置,我不知道可能是什么问题。我会尝试打开网络监视器,如 Fiddler ,或 Chrome 开发人员工具中的“网络”选项卡,并查看响应 header 以了解它试图将您重定向到的位置......这可能有助于揭示这里出了什么问题。

关于http - ERR_TOO_MANY_REDIRECTS 错误你,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7550635/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com