html 框架集中的 jsp 未编译:weblogic
我有这个简单的代码:
<%@ 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设运行的 jsp 是 Test.jsp 。
Test.jsp 的位置 -- WebContent
test_headers.jsp 的位置 -- WebContent
那么这是有效的。
Test.jsp 的位置 -- WebContent
test_headers.jsp 的位置 -- WebContent/jsp
那么这是有效的
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.
Location of Test.jsp -- WebContent
Location of test_headers.jsp -- WebContent/jsp
Then this is valid