
guice-vaadin-mvp
Overview
Guice-Vaadin-MVP is a lightweight MVP framework for Vaadin. Framework built on top of on Google Guice and inspired by Vaadin CDI-Utils addon.
MVP motivation
"MVP is a user interface design pattern engineered to facilitate automated unit testing and improve the separation of concerns in presentation logic" - Wikipedia
Theory can be found here: * http://yeejie.com/blog/category/Design-Pattern.aspx * http://msdn.microsoft.com/en-us/library/ff647543.aspx * http://martinfowler.com/eaaDev/PassiveScreen.html * http://en.wikipedia.org/wiki/Model–view–presenter * http://outcoldman.com/ru/blog/show/184
Project features
- Easy to configure and use MVP components;
- Flexible internal design;
- Localization support - injection of ResourceBundle, easy access to localized texts via TextBundle, controls auto-refresh on locale change;
- Built-in testing support;
- Support of preconfigured components injection;
- Support for two additional Event Buses - Model and Shared Model;
- Significant test coverage.
Quickstart
Read guice-servlet related documentation
Create your ScopedUI + AbstractMVPApplicationModule implementations and specify them in the webapp descriptor
Attach Guice Filter and specify MVPApplicationContextListener in the webapp descriptor
Create your Presenter and Views ``` public interface ContactView extends View {
void openContact(); }
public class ContactViewImpl extends AbstractView implements ContactView {
@Inject
@Preconfigured(nullSelectionAllowed = false, sizeFull = true, immediate = true)
private Table contactsTable;
@Override
public void openContact() {
... some Contact selection logic from UI controls
fireViewEvent(new ContactOpenedEvent(contactId));
}
}
public class ContactPresenter extends AbstractPresenter {
@Inject
private ContactService contactService;
@Observes
protected void onEvent(ContactOpenedEvent event) {
contactService.doSomethingWithContact(event.getContactId());
}
} ```
Mavenize
Artifact is available in the Central Maven repository:
<dependency>
<groupId>com.google.code.guice-vaadin-mvp</groupId>
<artifactId>guice-vaadin-mvp</artifactId>
<version>1.0.0</version>
</dependency>