--- title: "Model-View-ViewModel Pattern in Java: Separating UI and Logic for Cleaner Code" shortTitle: Model-View-ViewModel description: "Learn about the Model-View-ViewModel (MVVM) design pattern in Java. Discover its benefits, real-world applications, and how it improves UI and business logic separation for scalable and maintainable code." category: Architectural language: en tag: - Architecture - Data binding - Decoupling - Presentation - Scalability --- ## Also known as * MVVM ## Intent of Model-View-ViewModel Design Pattern The intent of the Model-View-ViewModel (MVVM) pattern in Java is to provide a clear [separation of concerns](https://java-design-patterns.com/principles/#separation-of-concerns) between the UI logic, the presentation logic, and the business logic by dividing the application into three interconnected components: Model, View, and ViewModel. ## Detailed Explanation of Model-View-ViewModel Pattern with Real-World Examples Real-world example > Consider a real-world analogous example of the MVVM pattern similar to organizing a cooking show. In this scenario: > > - **Model:** Represents the recipe itself, which includes the ingredients and the steps needed to cook the dish. The model is purely about the data and rules for preparing the dish but does not concern itself with how this information is presented to the audience. > > - **View:** Is akin to the kitchen set where the cooking show is filmed, including all the visual elements like the layout of the kitchen, the placement of ingredients, and the cookware. The view is responsible for the visual presentation and how the audience sees the cooking process. > > - **ViewModel:** Acts like the script for the cooking show, where it interprets the recipe (model) and organizes the flow of the show. It tells the chef (view) what to display next, when to add ingredients, and how to respond to changes like substituting an ingredient. The ViewModel bridges the gap between the technical details of the recipe and the chef's presentation, ensuring the audience understands each step without delving into the complexities of the recipe itself. > > In this example, the ViewModel allows the chef to focus on cooking and interacting with the audience, while the underlying recipe remains unchanged, promoting a clear separation of concerns. In plain words > The MVVM design pattern separates an application into three distinct components: the Model, which holds the data and business logic; the View, which displays the user interface; and the ViewModel, which acts as an intermediary to bind data from the Model to the View. Wikipedia says > Model–view–viewmodel (MVVM) is a software architectural pattern that facilitates the separation of the development of the graphical user interface (the view) – be it via a markup language or GUI code – from the development of the business logic or back-end logic (the model) so that the view is not dependent on any specific model platform. Architecture diagram ![Model-View-ViewModel Architecture Diagram](./etc/mvvm-architecture-diagram.png) ## Programmatic Example of Model-View-ViewModel Pattern in Java ViewModel will hold the business logic and expose the data from model to View. ```java public class BookViewModel { @WireVariable private List bookList; private Book selectedBook; private BookService bookService = new BookServiceImpl(); public Book getSelectedBook() { return selectedBook; } @NotifyChange("selectedBook") public void setSelectedBook(Book selectedBook) { this.selectedBook = selectedBook; } public List getBookList() { return bookService.load(); } /** Deleting a book. */ @Command @NotifyChange({"selectedBook","bookList"}) public void deleteBook() { if (selectedBook != null) { getBookList().remove(selectedBook); selectedBook = null; } } ``` View will have no logic, only UI elements. ```xml