gpt4 book ai didi

javascript - 如何在 Web 应用程序运行时访问数据库中的最新数据

转载 作者:行者123 更新时间:2023-12-01 02:28:28 25 4
gpt4 key购买 nike

我有一个 Spring MVC Web 应用程序,它正在从数据库检索数据。但是一旦应用程序运行并且数据库中的数据发生变化,Web应用程序将不会显示最新的数据。它仅显示自构建以来的数据。如何强制我的应用程序始终显示最新数据?

我的 JSP 是:

    <thead>
<tr>
<th>TIME</th>
<th>CITY</th>
<th>GATE</th>
</tr>
</thead>
<tbody>
<c:forEach items="${flights}" var="flight" begin = "0" end = "5">
<tr>
<td>${flight.time}</td>
<td>${flight.city}</td>
<td>${flight.gate}</td>
</tr>
</c:forEach>
</tbody>

最佳答案

满足您需求的最佳答案是使用 Websocket 技术。

这里是an example使用 spring 和 Postgresql,以及 this是使用该技术(spring-stomp)的官方尝试。

关于javascript - 如何在 Web 应用程序运行时访问数据库中的最新数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48516287/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com