Can You Use the MVC (Model-View-Controller) on Linux?

Question
Whenever you read about the MVC, it always involves Microsoft (e.g., and ASP or .NET). Is there a way to use the MVC on purely Linux?

Answer #1
Yes. The ASP.NET MVC framework of the model-view-controller is a Microsoft implementation of it. The MVC generically can be used as an architectural pattern using programming languages on a Linux server. To read more about it, see this posting https://en.wikipedia.org/wiki/Model%E2%80%93view%E2%80%93controller or pages 4-6 of Design Patterns. You can use Spring MVC as one option; see this external site for more information. You may want to see this internal posting to set up Spring.

Answer #2
You could use the Angular framework to use MVC too. This could be in a purely Linux environment.

Answer #3
See these postings:

https://stackoverflow.com/questions/26400261/hosting-mvc-application-on-linux-server

https://stackoverflow.com/questions/39331488/is-it-possible-to-use-mvc-without-asp-net-pages

https://www.reddit.com/r/dotnet/comments/18gaxvt/how_to_run_aspnet_mvc_core_on_a_linux_server/

Leave a comment

Your email address will not be published. Required fields are marked *