Castle Monorail 和 ASP.NET MVC 可以在同一个项目中共存吗?

发布于 2024-10-10 11:15:14 字数 199 浏览 4 评论 0原文

我有一个大型单轨铁路项目,我们决定将其迁移到 ASP.NET MVC。大多数底层系统可能是可重用的,但控制器当然必须重写,可能至少需要重写一些视图。

让我印象深刻的是,一个低风险的途径是将系统中定义明确的部分逐渐转换为 MVC,或者可能转换为 MVCContrib 可移植区域。有谁知道我使用这种方法是否可能遇到任何不明显的问题?

感谢您的投入, 马修

I have a large Monorail project that we have decided we are going to move over to ASP.NET MVC. Most of the underlying system will likely be reusable, but the Controllers will of course have to be rewritten, and proabably at least some of the views.

It strikes me that a low risk avenue for this is gradually convert well defined sections of the system to MVC, and perhaps as MVCContrib Portable Areas. Does anyone know if there are any non-obvious gotchas that I am likely to run into with this approach?

Thanks for your input,
Matthew

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

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

发布评论

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

评论(1

淡淡绿茶香 2024-10-17 11:15:14

我突然想到:

  1. 要小心路线。 MonoRail 控制器应排除在 ASP.NET MVC 路由之外,反之亦然。
  2. 一般来说,您将无法使用帮助程序从 MonoRail 链接到 ASP.NET MVC(或反之亦然)。例如,没有 <%= Url.Action("someaction") %>
  3. 布局通常是不兼容的。除非您在 ASP.NET MVC 中使用 Brail 或 NVelocity 视图引擎,但即使如此,我也不认为它会“正常工作”。

关于1.和2.也许你可以找到一些方法破解 MonoRail 并使其与 System.Web.Routing 兼容,但它不能开箱即用。

Off the top of my head:

  1. Be careful with routes. MonoRail controllers should be excluded of ASP.NET MVC routes, and viceversa.
  2. You won't be able to use helpers in general to link from MonoRail to ASP.NET MVC (or the other way around). E.g. no <%= Url.Action("someaction") %>
  3. Layouts are incompatible in general. Unless you use the Brail or the NVelocity view engines in ASP.NET MVC, but even then I don't think it will "just work".

About 1. and 2. maybe you can find some way to hack MonoRail and make it compatible with System.Web.Routing, but it doesn't work out of the box.

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