私は現在、チュートリアル(http://kristantohans.wordpress.com/2010/03/01/new-to-jasperreport-build-your-first-impressive-application-part-2/)に従っており、彼はJavaを使用していますデータベース接続 (conn)
50 try {
51 //Fill the report with parameter, connection and the stream reader
52 JasperPrint jp = JasperFillManager.fillReport(is, null, conn);
ここでmongoに接続するにはどうすればよいですか? モンゴと一緒に私が持っているので:
Mongo m = new Mongo( "localhost" , 27017 );
DB db = m.getDB( "test" );
と
JasperPrint jp = JasperFillManager.fillReport(is, null, m);
動作しません
ありがとう !