...
- DomUI uses optimal delta's to send AJAX updates as efficiently as possible. The delta calculation is very fast as we do not need to calculate a delta from the DOM directly; DomUI saves information on changes made in such a way that delta's can be generated very quickly.
- There is no XML "programming" involved in DomUI: most is just Java code. One usually only needs to code (some) Javascript when you integrate some Javascript component, like the Ace editor.
- It's very easy to create components or page fragments in DomUI. This makes it easy to build reusable and maintainable code.
Building an application
- A full DomUI application consists of a web.xml containing a DomUI <filter> specification plus a set of Java classes as a webapp.
- The Application class initializes the application, and defines the "root" DomUI page. It is an application level Singleton.
- Pages are Java classes that build a DOM that closely resembles the resulting DOM on the browser (layer 0).
...
- But DomUI has a lot of prebuilt components that itself are built using the DOM nodes (layer 1). Most DomUI code uses these components, not bare-bones HTML.
State management
- DomUI pages are stateful.
- This means: no serialization crap, no detached objects, no reload of data with every request.
- The database layer is closely integrated in DomUI and generalized so that backend technologies like Hibernate, JPA or just plain JDBC are all possible using the same data interface.
- DomUI pages have a "subsession" per "browser tab" and can be made completely cookieless: each page has a $cid parameter which contains a session ID which keeps track of the user's session. This also means that tabs/browser windows have (largely) independent sessions.
Integration within an application, "Hybrids"
- Creating a "hybrid" application, mixing DomUI and other display technologies, is not hard
- It does require knowledge of DomUI's state management: the integration needs to make sure that DomUI pages are deleted from memory as soon as possible.
- The very large ERP application that DomUI was written for is a hybrid, combining JSP pages with AJAX pages and DomUI pages.
Accessing data
- DomUI integrates out of the box with Hibernate
...
- 5.2
- DomUI has an abstract and generic query interface, loosely modeled like Hibernate's Criteria, but without it's design flaws. By using this framework kludges like manually creating SQL are not needed in components that help with defining queries.
...
- This framework can be used for Hibernate (both JPA and native)- but also for just JDBC queries or queries against a collection-of-objects. Other frameworks can be added relatively easily.
...
- The framework is Java-centric, and uses the typeful properties to create type-safe queries.
- DomUI by default retains all data loaded for a page in a page-persistent session. This means that some care is needed for forms loading lots of data. But it also means that manipulating state is peanuts.
- It also means that forms have no problems with multiple roundtrips to the server: on return everything is where it was, without serialization horrors or detached status.
Which makes edit forms really simple: no models, no reloading, no serialization.
The
...
DOM in DomUI
- Pages are created as a HTML DOM (Document Object Model) represented as Java objects. These objects form a tree in server memory, and by manipulating and rendering that tree we can render an HTML UI on the browser
...
- Actions executed by the user, like pressing a button, are sent to the server. The action is handled by Java code (in this case an IClicked<T> handler) which effects the action. This action then modifies the server-side DOM tree (because the Java code for instance adds a new row, or adds an error message, or whatnot).
- Changes made to the DOM are sent to the browser as a delta. This delta is generated conceptually by sending only the changes made to the tree. The OptimalDeltaBuilder is fast, and produces delta's that are as small as possible. For instance, if we delete 1000 rows of a 1001 row table it does not send 1000 "delete" commands but it sends a "delete" for the parent, then an "add" for the remaining row.
- Since the delta is small, updating the page is fast: it uses hardly any bandwidth.
- Calculating the delta is also very fast as the delta is assisted by collected change information.
- The UI is then created by creating a DOM that is a 1-on-1 match with the HTML that shows that UI. This means that
...
- HTML knowledge is required from a developer.
- One way to reduce the amount of "DOM code" to write is to use components. A component is a basic HTML entity (like a DIV or SPAN) that encapsulates complex structure and behavior.
- Because components themselves are simply DOM nodes, they are very easy to write, using only Java. This is important because writing complex pages as a set of components make them easy to maintain and build!
- Another way to reduce code is to use one of the provided builders, or to build your own. A builder is a class that helps you to create a certain UI, but which is not part of that UI. The most often used
...
- builder is the FormBuilder, which creates input forms.
DomUI Layering: layer 0
- DomUI is layered. Layer 0 is the core HTML layer.
- This layer defines most of the core HTML tags, like Div, Table, TD etc
- Each code tag node is either a NodeBase (cannot have children) or a NodeContainer (can have children).
- These base nodes encapsulate all common
...
- behavior, and handle all CSS styling. CSS properties are exposed as java class properties, and can be changed at will at runtime to provide a component's dynamic behavior.
- Layer 0 nodes do not have "extra" functionality; they are as close to the original HTML elements as possible.
- Layer 0 elements are the "building blocks" for everything; they are used in components and usually to create the large scale structure of a form.
Layer 1
- Layer 1 is the component layer.
- This layer consists of components that are mostly constructed out of layer 0 nodes.
- A component exposes
...
- behavior and can be an input component.
- All DomUI input components are strongly typed, and always return their value in the appropriate Java type. For instance the Text<T> control is an html <input type="text"> component but can be used as Text<Integer>. In this case the getValue() call will return that Integer always (or null if the control is empty).
- This makes conversion and (field level) validation a function of a control itself. The control uses the validator framework and converter framework to do the actual work. Most common conversions are predefined.