使用 BIRT 进行 Vaadin 配置

发布于 2024-12-05 13:27:06 字数 931 浏览 0 评论 0原文

我在我的项目中使用 Vaadin 和 BIRT 报告。我在使用 Vaadin 访问报告时遇到问题,我认为它与我的 web.xml 配置有关。任何人都可以帮助我摆脱这个问题吗?

< /servlet-mapping>
     <servlet-name>VaadinApplicationServlet</servlet-name>
     <url-pattern>/VAADIN/*</url-pattern>
</servlet-mapping>

<servlet-mapping>
    <servlet-name>VaadinApplicationServlet</servlet-name>
    <url-pattern>/MyProject/*</url-pattern>
</servlet-mapping>

如果我像这样放置 url 模式,它会将 index.jsp 页面显示为首页。

< /servlet-mapping>
     <servlet-name>VaadinApplicationServlet</servlet-name>
     <url-pattern>/*</url-pattern>
</servlet-mapping>

如果我将 url 模式配置为“/*”,它可以正常工作并加载 vaadin UI,

但问题是如果我进行第二个配置,我无法将报告加载到浏览器,它总是重定向到我当前的 vaadin UI 页面(当我单击加载报告的按钮)

如果放置第一个配置,我可以直接访问报告,但它不会加载 vaadin UI。

任何人都可以帮我解决这个问题吗?

谢谢。

干杯

I'm useing Vaadin and BIRT reporting in my project.I have problem with accessing report with Vaadin,I think its related to my web.xml configuration.Can anyone help me to get out from this problem??

< /servlet-mapping>
     <servlet-name>VaadinApplicationServlet</servlet-name>
     <url-pattern>/VAADIN/*</url-pattern>
</servlet-mapping>

<servlet-mapping>
    <servlet-name>VaadinApplicationServlet</servlet-name>
    <url-pattern>/MyProject/*</url-pattern>
</servlet-mapping>

If i put url pattern like this.it shows index.jsp page as first page.

< /servlet-mapping>
     <servlet-name>VaadinApplicationServlet</servlet-name>
     <url-pattern>/*</url-pattern>
</servlet-mapping>

If I configure the url pattern as "/*" it works fine and load the vaadin UI

but the problem is if I put 2nd configuration I can not load the report to browser,It always redirect to my current vaadin UI page (When I click the button to load the report)

If put first configuration I can access report directly ,But It does not load the vaadin UI.

Can any one help me to solve this problem??

Thank you.

Cheers

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

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

发布评论

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

评论(1

绝影如岚 2024-12-12 13:27:06

第一个配置应该没问题,但是您必须以不同的方式访问您的应用程序:

尝试

http://localhost:8080/[display-name]/MyProject

您应该在第一个上下文参数上方找到显示名称

<display-name>IamTheDisplayName</display-name>
<context-param>
    <description>Vaadin production mode</description>
    <param-name>productionMode</param-name>
    <param-value>false</param-value>
</context-param>

The first configuration should be ok, but you have to access your application differently:

Try

http://localhost:8080/[display-name]/MyProject

You should find the display-name right above the first context-param

<display-name>IamTheDisplayName</display-name>
<context-param>
    <description>Vaadin production mode</description>
    <param-name>productionMode</param-name>
    <param-value>false</param-value>
</context-param>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文