Vaadin
view
Vaadin
자바에서 웹 뷰를 만들 수 있게 도와주는 프레임워크
다양한 UI Components 를 갖다 쓰면 된다. Code or Drag & Drop
Example
Drag & Drop(with. vaadin designer)
Install Vaadin Designer plugin on IntelliJ
Code
private Component createH2() {
H2 appName = new H2("NEW");
appName.addClassNames("app-name");
return appName;
}