Payal Porwalcodeswithpayal.hashnode.dev·Feb 3, 2025Understanding MVC and MVT: A Detailed Comparison with Practical ExamplesIn the world of web development, two popular architectural patterns are MVC (Model-View-Controller) and MVT (Model-View-Template). These design patterns help in structuring applications in a way that promotes maintainability, scalability, and separat...mvc
Sean M. Drew Sr.blog.seandrew.info·Jan 15, 2025Dynamically Extracting Endpoint Names and Attributes from a Custom C# MVC APIRecently, I was asked whether a specific custom API endpoint functionality existed for a client. Unfortunately, I realized that I had been a bit lax in documenting the API endpoints as I added new functionality. In fact, more than a bit lax as the en...api
Obieze Isidienuobsidiendev.hashnode.dev·Jan 3, 2025WTF is MVC?SO! Obviously you’re here because you want to know about MVC. Like…what exactly is it? Well first let’s talk about what MVC isn’t. 1. A language2. A framework Great! so- what IS MVC? It’s just an idea, and a good one. Someone had an idea for h...mvc
João Esperancinhajesperancinha.hashnode.dev·Dec 30, 2024Comparing WebFlux and Spring MVC with JMeter and Kotlin1. Introduction Many times, we need to back up certain claims we make in software development. More often than not, we need to show it very clearly to stakeholders, businesses, and management, the value of our claims. Many times we see a true value i...MVC architecture
Sean M. Drew Sr.blog.seandrew.info·Dec 16, 2024Redirects Made Simple in ASP.NET MVC: Using RedirectToActionIn ASP.NET MVC, efficiently redirecting user requests between actions and controllers is crucial for maintaining clear and concise workflows. The "RedirectToAction" method offers a flexible way to navigate users to different parts of your application...C#
Oohnohassanigocoding.hashnode.dev·Dec 5, 2024Mastering MVC Architecture: How to Build Organized, Scalable Apps 🛠️Understanding MVC Architecture: A Structured Approach to Building Scalable Apps (With a Real-Life Analogy) Picture this: You're at a bustling restaurant 🍴. You don't expect the chef to serve your food, the waiter to cook your steak, or the menu to.....1 likeMVC architecture
Aouassar Asmaealgostyle.hashnode.dev·Dec 1, 2024Testing en Spring Boot (MVC - Thymeleaf)Le testing est une étape cruciale du développement logiciel, et Spring Boot offre des outils puissants pour tester des applications basées sur l’architecture MVC. Dans ce qui suit, on va voir comment tester efficacement une application Spring Boot MV...Springboot
Sanjit Gawadesanjit.hashnode.dev·Nov 18, 2024Understanding MVC: A Simple Introduction to Software ArchitectureWhen building applications, maintaining a clean, modular, and scalable architecture is key to long-term success. The Model-View-Controller (MVC) pattern is one of the most widely used architectural patterns, providing a clear separation of concerns a...mvc
Dave Poirierblog.encoded.life·Nov 14, 2024Massive View Controllers and SwiftUICommenting on this post on LinkedIn: https://www.linkedin.com/posts/jacobmartinbartlett_the-biggest-problem-with-swiftui-is-that-activity-7261769674034409472-qGVe?utm_source=share&utm_medium=member_desktop I replied with: *The "Massive View Controll...109 readsSwiftUI
Somsubhro Chakrabortysomsubhrochakraborty.hashnode.dev·Nov 13, 2024MVC ModelThe MVC model is employed in the web development, desktop applications and Mobile applications to break the code base in such a way that it becomes easier to manage, modulated and easier to maintain. The MVC stands for Model View Controller Where and...MVC architecture