Java Web 服务:使用 MVC 或 DAO 管理器

发布于 2024-08-22 11:08:16 字数 221 浏览 6 评论 0原文

我正在尝试学习如何用java开发网络服务。 现在,一些教程(我正在尝试学习如何在不使用框架的情况下自己完成此操作)使用 MVC 模式并公开类来创建 WSDD 文件等,其他教程则使用 DAO + 管理器。

现在我还没有找到一篇讨论这些差异的文章(要求优点和缺点可能有点太简单了),所以我想知道这里是否有人有一些见解,也许有一些推荐阅读(无论是书籍还是教程)网站),因为有些网站有点矛盾。

先感谢您。

I'm trying to learn how to develop web-services in java.
Now some tutorials (I'm trying to learn how to do it myself without using a framework) use the MVC pattern and expose the class to create a WSDD file etc., other tutorials go for a DAO + managers.

Now I haven't been able to find an article discussing the differences (asking for up and downsides is probably a bit too simplistic), so I was wondering if anyone here had some insights and maybe some recommended reading (be it books or tutorials on sites) since some sites are a bit contradictory.

Thank you in advance.

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

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

发布评论

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

评论(1

人疚 2024-08-29 11:08:16

DAO + 管理器就是实现 MVC 设计的模型部分的简单方式。

DAO 使您可以访问数据存储,而 DAO、管理器和所有逻辑构成了您的模型。

视图和控制器由其他组件组成,并与模型通信以从数据存储中获取信息。

WSDD 文件只是将这些部分链接在一起。

您应该能够同时使用这两种模式。

DAO + managers is simply how you would implement the model part of your MVC design.

A DAO gives you access to your data store and the DAO, the managers, and all the logic are what make up your model.

The view and controller and then made up of other components and talk to the model to get information from your data store.

WSDD files simply chain these parts together.

You should be able to use both pattern together.

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