html 框架集中的 jsp 未编译:weblogic

发布于 2024-12-02 18:06:33 字数 504 浏览 2 评论 0原文

我有这个简单的代码:

<%@ page import="java.io.*"%>
<%@ page import="java.util.Properties"%>
<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>Vijay's TEst</title>
</head>
<frameset rows="17%,*">
<frame name="header" src="test_headers.jsp" scrolling="no" noresize frameborder="0" />
</frameset>
</html>

但问题是我在编译时收到错误 404--Not Found在weblogic中运行这个jsp。

请帮我解决这个问题。

I have this simple code :

<%@ page import="java.io.*"%>
<%@ page import="java.util.Properties"%>
<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>Vijay's TEst</title>
</head>
<frameset rows="17%,*">
<frame name="header" src="test_headers.jsp" scrolling="no" noresize frameborder="0" />
</frameset>
</html>

But the problem is I get a Error 404--Not Found when I compile & run this jsp in weblogic.

Please help me with this.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

过期以后 2024-12-09 18:06:33

假设运行的 jsp 是 Test.jsp

Test.jsp 的位置 -- WebContent

test_headers.jsp 的位置 -- WebContent

那么这是有效的。

<frame name="header" src="test_headers.jsp" scrolling="no" />

Test.jsp 的位置 -- WebContent

test_headers.jsp 的位置 -- WebContent/jsp

那么这是有效的

<frame name="header" src="/jsp/test_headers.jsp" scrolling="no" />

Lets say the jsp which is run is Test.jsp .

Location of Test.jsp -- WebContent

Location of test_headers.jsp -- WebContent

Then this is valid.

<frame name="header" src="test_headers.jsp" scrolling="no" />

Location of Test.jsp -- WebContent

Location of test_headers.jsp -- WebContent/jsp

Then this is valid

<frame name="header" src="/jsp/test_headers.jsp" scrolling="no" />
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文