0
How to develop a Simple MVC Architecture Java Application
There are a lot of architecture in the Software industry. Basically features of most
architecture is reduce the coupling between View and Logic. By using that we can change the view when ever we want and keep the logic same.
Some of the Architectures are
1. MVC- Model View Controller
2. MVVM- Model View ViewModel
I have been working in MVC architecture in .NET web application and MVVM architecture in WPF desktop application, and Mono Develop Mobile application.
When i try to develop java based desktop application, i tried to do the MVC architecture using help from internet.
Basics of MVC
M-Model
V-View
C-Controller
Model Class
Which will contain the logic of the application and data base connection and manipulation.
View Class
View will be contains the User Interface part only.
Controller
Controller will do the communication part between View and Model
<
Main Method
Some of the Architectures are
1. MVC- Model View Controller
2. MVVM- Model View ViewModel
I have been working in MVC architecture in .NET web application and MVVM architecture in WPF desktop application, and Mono Develop Mobile application.
When i try to develop java based desktop application, i tried to do the MVC architecture using help from internet.
Basics of MVC
M-Model
V-View
C-Controller
Model Class
Which will contain the logic of the application and data base connection and manipulation.
View Class
View will be contains the User Interface part only.
Controller
Controller will do the communication part between View and Model
<
Main Method
Post a Comment