如何在水晶报表中使用 JNDI
我正在运行 Tomcat 5.5,其中包括一个带有 Java Reporting Components (JRC) 2008 的 Web 应用程序。
服务器的数据源与客户端不同,目前我使用表上的 setConnection() 函数设置它,并且工作正常。缺点是,仅仅设置数据源就花费了 800 毫秒(该死的慢水晶)。
由于 Crystal Reports 似乎使用 JNDI,那么如何在我的应用程序中配置 JNDI?可以通过编程方式完成此操作,还是必须在 web.xml 中指定数据源?
I have a Tomcat 5.5 running which includes a Webapp with the Java Reporting Components (JRC) 2008.
The Server has a different data source than the client, and currently I set it with the setConnection() functions on the tables, and it works fine. The downside is, that this taken 800ms (Damn slow crystal) just to set the datasources.
Since Crystal Reports seem to use JNDI, how do I configure JNDI in my app? Can this be done programmatically, or do I have to specify the data sources in the web.xml?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,我自己发现了。
将数据源添加到 Tomcat 服务器的 context.xml 中,并将引用添加到 web.xml 中!现在,Crystal 很乐意获取此数据源,无需手动重新链接数据源。
Okey, I found out for myself.
Add the Datasource to the context.xml of the Tomcat Server, and add a ref to the web.xml! Now Crystal is happyly taking this datasource and no manual relinking of datasources is needed.