以前我将连接对象发送到fillReport()
ofJasperFillManager
类。它工作正常,它也在生成数据。下面是我用于数据库连接的代码。
Connection conn = null;
Class.forName("com.mysql.jdbc.Driver");
conn = (Connection) DriverManager.getConnection("jdbc:mysql://localhost:3306/dbname", "username", "password");
但是现在我不想将连接对象传递给fillReport()
我想传递JRDataSource。我怎样才能做到这一点?如何JRDataSource
在我的 spring 配置文件中使用 mysql 数据库信息进行配置?谁能告诉我。
我正在使用iReport 4.5.0
和Spring 3.0.5 RELEASE
。如果你想要更多的信息,我会给你。