Search icon
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
JasperReports 3.5 for Java Developers

You're reading from  JasperReports 3.5 for Java Developers

Product type Book
Published in Aug 2009
Publisher Packt
ISBN-13 9781847198082
Pages 368 pages
Edition 1st Edition
Languages

Table of Contents (17) Chapters

JasperReports 3.5 for Java Developers
Credits
About the Author
About the Reviewers
Preface
An Overview of JasperReports Adding Reporting Capabilities to our Java Applications Creating your First Report Creating Dynamic Reports from Databases Working with Other Datasources Report Layout and Design Adding Charts and Graphics to Reports Other JasperReports Features Exporting to Other Formats Graphical Report Design with iReport Integrating JasperReportswith Other Frameworks Index

Integrating JasperReports with Hibernate


Hibernate (http://www.hibernate.org) is a very popular ORM tool. JasperReports (version 1.2 and newer) includes native support for Hibernate integration. This integration consists of allowing embedded report queries to be written in the Hibernate Query Language (HQL). The following JRXML template illustrates how to do this:

<?xml version="1.0" encoding="UTF-8"?>
<jasperReportxmlns="http://jasperreports.sourceforge.net/jasperreports"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://jasperreports.sourceforge.net/jasperreports http://jasperreports.sourceforge.net/xsd/jasperreport.xsd"name="HibernateQueryDemoReport" pageWidth="595" pageHeight="842"columnWidth="555" leftMargin="20" rightMargin="20"topMargin="30" bottomMargin="30">
  <parameter name="countryCode" class="java.lang.String"/>
  <queryString language="hql">
    <![CDATA[from Aircraft aircraftwhere country = $P{countryCode} order by aircraft...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $15.99/month. Cancel anytime}