Top "Model-view-controller" questions

Model–View–Controller (MVC) is an architectural pattern used in software engineering.

What is the difference between MVC and MVVM?

Is there a difference between the standard "Model View Controller" pattern and Microsoft's Model/View/ViewModel pattern?

model-view-controller mvvm design-patterns
What are MVP and MVC and what is the difference?

When looking beyond the RAD (drag-drop and configure) way of building user interfaces that many tools encourage you are likely …

user-interface model-view-controller design-patterns terminology mvp
Passing Data between View Controllers

I'm new to iOS and Objective-C and the whole MVC paradigm and I'm stuck with the following: I have a …

ios objective-c swift model-view-controller uiviewcontroller
MVC pattern on Android

Is it possible to implement the model–view–controller pattern in Java for Android? Or is it already implemented through …

java android design-patterns model-view-controller
Show pop-ups the most elegant way

I have this AngularJS app. Everything works just fine. Now I need to show different pop-ups when specific conditions become …

javascript model-view-controller angularjs popup show-hide
Content type 'application/x-www-form-urlencoded;charset=UTF-8' not supported for @RequestBody MultiValueMap

Based on the answer for problem with x-www-form-urlencoded with Spring @Controller I have written the below @Controller method @RequestMapping(value = "/{…

spring spring-mvc model-view-controller
Spring Test & Security: How to mock authentication?

I was trying to figure out how to unit test if my the URLs of my controllers are properly secured. …

spring security model-view-controller testing junit
In Angular, how to redirect with $location.path as $http.post success callback

I am attempting to make a simple authentication service by sending a Post to a php file, I need it …

javascript model-view-controller angularjs
Limiting number of displayed results when using ngRepeat

I find the AngularJS tutorials hard to understand; this one is walking me through building an app that displays phones. …

javascript model-view-controller angularjs scope
What is Data Transfer Object?

What is a Data Transfer Object? In MVC are the model classes DTO, and if not what are the differences …

model-view-controller architecture dto data-transfer data-transfer-objects