Java Web 应用程序可以在 netbeans 上运行,但不能“独立”运行。

发布于 2024-12-28 05:56:03 字数 478 浏览 2 评论 0原文

我出于演示目的创建了一个相当简单的 Web 应用程序。从netbeans(使用tomcat)运行它时它工作得很好。有一个搜索表单和一个搜索结果显示页面。搜索结果显示页面使用带有 JQuery 的 AJAX 及其数据表插件。数据表中的一列包含动态生成的图像。

当我在 tomcat 应用程序中静态部署它时,它可以工作并且不会抛出任何错误,但不会创建图像。该列显示图像标签 alt 属性的内容。

我怎样才能“调试”这个问题?是tomcat配置问题吗?

编辑:

我可以通过直接转到渲染 servlet 来渲染图像,然后显示以下消息而不是图像:

The image cannot be displayed because it contains errors

这是在 Windows 上。这些图像是从执行该工作的现有库创建的。从 netbeans 部署应用程序时,这工作得非常好。另请注意,我不是 tomcat 专家。

i've created a rather simple Web application for demo purposes. It works perfectly fine when running it from netbeans (using tomcat). there is a search form and a search results display page. The search result display page uses AJAX with JQuery and it datatables plugin. a column in the datatable contains a dynamically generated image.

When i deployed it statically in tomcat applications works and no errors are thrown but the images are not created. the column displays the content of the image tags alt attribute.

How could I "debug" this issue? Is it a tomcat config problem?

EDIT:

I can render image by going to the render servlet directly i then get following message displayed instead of the image:

The image cannot be displayed because it contains errors

This is on Windows. The images are created from an existing library that does the work. This works perfectly fine when deploying the application from netbeans. Also note I'm not a tomcat expert.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

三五鸿雁 2025-01-04 05:56:03

各位,我的错。 Web 应用程序是一个数据库应用程序,据称独立于哪个数据库。然而 postgresql 是问题所在,因为它的 JBDC 驱动程序的某些方法参数是区分大小写的(恕我直言,这是一个错误的决定),而在 hsqldb 等其他方法中则需要大写。这导致了这个问题。

sry guys my bad. The Webapp is a database app supposedly independent of which database. however postgresql is the issue as certain method parameters of it's JBDC driver are case-sensitive (IMHO a bad decision) while in others like hsqldb upperCase is required. this caused the issue.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文