处理拖放:视图还是业务逻辑?
我有一个 TransferHandler 类,用于处理文件拖放。它应用于 Swing 组件并因此与视图交互。
我的问题如下:
- 在MVC中,这个类在控制器部分的哪里可以找到?
- 在分层架构(数据、业务、表示)和 MVC 的混合中,此类会位于业务逻辑中,还是会有一个包含特定于视图的逻辑的子包?
I have a TransferHandler class that is used to handle file drag and drop. It is applied to Swing components and as such interacts with the view.
My question is as follows:
- In an MVC, where would this class be found in the controller part?
- In a mix of a layered architecture (data, biz, presentation) and MVC would this class be in the business logic or would there be a subpackage containing logic specific to the view?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
关于该主题的几篇好文章:
http://martinfowler.com/eaaDev/uiArchs.html
http://martinfowler.com/eaaDev/SeparatedPresentation.html
Couple of nice articles about the subject:
http://martinfowler.com/eaaDev/uiArchs.html
http://martinfowler.com/eaaDev/SeparatedPresentation.html
假设你把你的界面改成CLI(控制台),TransferHandler会放在你的控制器部分吗? - 不,所以,这是观点。
Suppose you change your interface to CLI(console), will TransferHandler be placed in your controller part? - No. So, it is view.