SpringBoot使用Jsp预览水晶报表(二):预览连接Oracle数据库的水晶报表
程序员文章站
2022-06-27 16:14:22
目录一、前言1开发环境2项目结构二、预览水晶报表1添加水晶报表开源项目-CRJavaHelper工具类2添加水晶报表3创建jsp文件4配置水晶报表的servlet5添加controller三、测试一、前言1开发环境继续开发项目:SpringBoot使用Jsp预览水晶报表(一):项目搭建并预览报表https://blog.csdn.net/cs373616511/article/details/1099531822项目结构二、预览水晶报表...
目录
项目已上传git:https://gitee.com/373616511/spring-boot-crystal-reports-jsp-demo.git
一、前言
1开发环境
继续开发项目:SpringBoot使用Jsp预览水晶报表(一):项目搭建并预览报表
https://blog.csdn.net/cs373616511/article/details/109953182
2项目结构
二、预览水晶报表
1添加水晶报表开源项目-CRJavaHelper工具类
在这里面下载CRJavaHelper工具类使用,没有找到官网java文档
https://github.com/souvikduttachoudhury/CrystalReportsSpringBoot.git
src/com/businessobjects/samples/CRJavaHelper.java
使用CRJavaHelper工具类操作水晶报表,将其拷贝到项目中
CRJavaHelper .java
2添加水晶报表
test2.rpt
test2.rpt 的创建方法自行百度或者参考博客https://blog.csdn.net/cs373616511/article/details/109269674
3创建jsp文件
cr2.jsp
<%@page contentType=" text/html " %>
<%@page pageEncoding="UTF-8" %>
<%@page import=" com.crystaldecisions.sdk.occa.report.* " %> <%-- webreporting.jar --%>
<%@page import=" com.crystaldecisions.report.web.viewer.* " %>
<%@ page import="com.asyf.demo.utils.CRJavaHelper" %>
<%@ page import="com.crystaldecisions.sdk.occa.report.application.ReportClientDocument" %>
<%
// 水晶报表的位置
final String REPORT_NAME = "/WEB-INF/test2.rpt";
%>
<%
try {
//打开报表
ReportClientDocument reportClientDoc = new ReportClientDocument();
reportClientDoc.open(REPORT_NAME, 0);
//更换数据源
String username = "scott";
String password = "root";
String driverName = "oracle.jdbc.OracleDriver";
String connectionURL = "jdbc:oracle:thin:@localhost:1521:orcl";
String jndiName = "JDBC(JNDI)";
CRJavaHelper.changeDataSource(reportClientDoc, username, password, connectionURL, driverName, jndiName);
//给参数赋值
//第二个参数代表子报表,设置主报表参数,设置为空串
CRJavaHelper.addDiscreteParameterValue(reportClientDoc, "", "deptNoPar", 10);
//C:\\Users\\Administrator\\Desktop\\001.jpg"
CRJavaHelper.addDiscreteParameterValue(reportClientDoc, "", "imagePath", "");
// 把报表源放进session,传递到报表显示页面
session.setAttribute("reportSource", reportClientDoc.getReportSource());
// 建立一个viewer对象实例,并设置
CrystalReportViewer viewer = new CrystalReportViewer();
viewer.setOwnPage(true);
viewer.setOwnForm(true);
viewer.setPrintMode(CrPrintMode.ACTIVEX);
//
// 从session中取报表源
Object reportSource = session.getAttribute("reportSource");
viewer.setReportSource(reportSource);
viewer.setReportSource(reportClientDoc.getReportSource()); //显示水晶报表
viewer.processHttpRequest(request, response, this.getServletConfig().getServletContext(), null);
} catch (Exception ex) {
out.println(ex);
}
%>
4配置水晶报表的servlet
@SpringBootApplication
public class DemoApplication {
public static void main(String[] args) {
SpringApplication.run(DemoApplication.class, args);
}
//配置serverlet,否则无法加载图片以及一些其他功能
@Bean
public ServletRegistrationBean getServletRegistrationBean() {
ServletRegistrationBean bean = new ServletRegistrationBean(new CrystalReportViewerServlet());
bean.addUrlMappings("/CrystalReportViewerHandler");
return bean;
}
}
5添加controller
@GetMapping("/cr2")
public String cr2(Model model) {
return "cr2";
}
三、测试
演示效果
本文地址:https://blog.csdn.net/cs373616511/article/details/109955330