打开Tomcat部署的WebReport\WEB-INF\web.xml,在</web-app>标签之前,添加一段代码,添加效果如下:
然后将你写的
以%tomcat_home%/webapps/WebReport/目录作为web服务器默认目录,在WebReport中建一个a.jsp文件,该文件作为web服务器的默认主页。
a.jsp调用iframe集成op=fs产品演示界面,代码如下:
<%@ page language="java" import="java.util.*" pageEncoding="gb2312"%>
<html>
<head>
<title>FineReport报表</title>
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<iframe id="reportFrame" src="ReportServer?op=fs"
name="itemslist" frameborder="0" width="100%" height="100%"></iframe>
</body>
</html>
最后 http://localhost就可以进入a.jsp页面,显示op=fs产品演示界面内容了。