I am going to develop a winform application. I want to keep Model, View and Controller separate. I have not used any Java MVC frameworks, and have been out of touch with Java for a few years. Can anyone tell me some suitable frameworks, and their advantages and disadvantages, from their own experience? I am planning to use the NetBeans IDE.
相关问题
- Delete Messages from a Topic in Apache Kafka
- Jackson Deserialization not calling deserialize on
- How to maintain order of key-value in DataFrame sa
- StackExchange API - Deserialize Date in JSON Respo
- Difference between Types.INTEGER and Types.NULL in
Griffon is a nice framework that has an MVC structure and is made to develop desktop applications.
Swing already supports some kind of MVC. It's only a UI toolkit however. If you want more then look for a Rich Client Platform (highly recommended) such as the NetBeans Platform (Swing based) or Eclipse RCP (SWT based).
Swing is your best choice, especialy with Netbeans(it has very nice gui editor for swing). And I guess that some components meet your MVC pattern read more in this artilce
checkout Swing