1.http://localhost:8080/ICMP/ureport/designer访问报表设计首页,如图
2.选择数据源,选择第三种方式配置,级选择内部数据源,选择好,选择其中一个数据库表
接下来配置需要显示的字段,如图
配置好需要显示的字段以及报表样式,点击左上角的保存,在项目中会生成一个xml文件,一般是在web-inf文件下。
3.接下来通过网页显示配置好的报表,springmvc编写前端响应方法,
@RequestMapping(params = "xlBusLineUReport")
public String xlBusLineUReport() {
return "base/line/LineReport/xlBusLineUReport";
}
创建响应jsp页面xlBusLineUReport.jsp,需要jQuery插件包
<%@ page language="java" contentType="text/html; charset=utf-8"
pageEncoding="utf-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Insert title here</title>
<script type="text/javascript">
$("#commentIFrame").attr("src","${webRoot}/ureport/preview?_u=file:xl_bus_line.ureport.xml");
</script>
</head>
<body>
<iframe onload="this.height=800" width="100%" scrolling="yes"
frameborder="0" src="" name="commentIFrame" id="commentIFrame" />
</body>
</html>
注意如果多条件查询的话,需要这样编写:
$("#commentIFrame").attr( "src", "${webRoot}/ureport/preview?_u=file:xl_bus_line.ureport.xml&org_name="+ org_name + '&line_status='+ line_status+"&line_name="+lineName);
并且ureport2数据源数据库sql语句改为,必须定义默认参数,使用emptyparam函数,对参数是否为空进行判断