如何使用 JSP 直接写入单独的 HTML 页面?

发布于 2024-10-08 16:59:00 字数 168 浏览 0 评论 0原文

我被要求用JSP构建这个项目,其中一个规定是这个项目不能有数据库。我正在尝试编写一个 JSP 表单,以允许用户在单独的 HTML 页面上添加、删除和编辑链接。我的 JSP 经验非常非常有限,我希望有人能给我指点一个像样的教程。我将非常感谢一些指导。总的来说,我对 JavaScript、JQuery 和 DOM 比较熟悉。

I was requested to built this project in JSP and one stipulation is that this project cannot have a database. I am trying to write a JSP form to allow users to add, remove and edit links on a separate HTML page. I have very, very limited JSP experience and I was hoping that someone could point me to a decent tutorial. I would greatly appreciate some direction. I am relatively comfortable with JavaScript, JQuery and the DOM in general.

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

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

发布评论

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

评论(1

焚却相思 2024-10-15 16:59:00

如果由于某种原因无法选择完整的 SQL 数据库服务器,那么您始终可以使用嵌入式 SQL 数据库服务器,例如 JavaDBH2SQLite。即使这也不是一个选项,那么您始终可以转到预定义格式(如 CSV、XML 甚至 JSON)的基于文本的文件。有很多工具可以在 Java 对象与 CSV、XML 和 JSON 之间进行转换。更重要的是,在家种植它相对容易。如果由于某些奇怪的原因这甚至不是一个选项,那么您可以作为最后的手段使用 Java 序列化.

至少,HTML绝对不是一个适合“数据存储”的格式。

If a fullworthy SQL database server is not an option for some reason, then you can always use an embedded SQL database server, like JavaDB, H2 or SQLite. It that is also even not an option, then you can always head to a textbased file in a predefinied format like CSV, XML or even JSON. There are lot of tools available which can convert between Java objects and CSV, XML and JSON. Even more, it's relatively easy to homegrow it. If that is even not an option for some odd reason, then you can as last resort use Java serialization.

At least, HTML is definitely not a suitable format for "data storage".

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