Why should you choose Beigesoft™ software (libraries)

First, an application based on Beigesoft™ libraries works anywhere. The all parts - ORM, PDF Writer (reporting tool), WEB-interface work on standard Java as well as on Android one.

Second, they are fast. The all parts work fast even on weak devices such as a smartphone. Beige WEB interface is based on JSP. JSP WEB-view technology is the same as PHP, ASPX, etc. This is the dominant WEB-view technology (mostly used). JSP is faster than PHP (and other script languages) because of compiling JSP-bytecode into processor code on time (Just In Time bytecode compiler). The Beige-PDF writer caches TTF fonts and makes PDF files with only used characters, so you will never get a huge PDF file or wait a long time for it. Standard ORMs use "lazy initialization" to retrieve entity's fields. That means that they use several SQL queries to retrieve whole model. Beige ORM retrieves the whole model by using only(single) SQL query (with JOINS). A one big SQL query (exactly with JOINS) that retrieves all data is always faster than several small SQL queries that retrieve the same data.

Third, with these libraries you are able to build very complex business applications quickly. You can check it by yourself by making the example application in the next articles. Also look at the Beige-EIS source code and "Bob's pizza" tutorials, i.e. accounting and web-store functionality. Beige PDF writer can't make charts or barcodes. It took me 3 months to program Beige PDF. PDF is naturally able to draw lines and shapes. It will not be long or difficult to implement a chart or a bar-code. And this is a regular task even for an IT student. Programming a report without a visual editor is actually a reliable and quick way.

Fourth, they and all 3-party software are under truly free licenses. BSD 2-Clause License means:

They blame that this license is advertising. Have you ever seen a reliable book without reference page? Omitting of used sources in a book is lawless. And it's not about advertising, it's about "the authors", "the terms" and "the author's responsibilities". There are a lot of useless software (especially duplicates) that just dedicated to waste your time. The last time when the Law hits such ugly things in the IT sphere was the "data privacy". Many business owners bore direct losses because of it, for example imposing additional fees to prevent publishing WHOIS information. In other hand, there are software with "non-proper" or "unclear" licenses and authors. Just take a look inside an open-source software, and you might find a part with a non-free or unclear license.

Why Beige-WEB is a good choice? Creating dynamic WEB interface on Server-side vs Client side.

Dynamic WEB interface is built by usually on server side, or on client one. Both are the same years old.

Server side: CGI-BIN (C, PERL,...), PHP, ASP, JSP, ASPX, JEE based Apache Velocity and Wicket; new modern JEE based Thymeleaf, etc. They generate and send whole HTML pages - data and widgets.

Client side: a) JavaScript-based: JEE based GWT and JSF, Angular; new modern Node, React, Vue, ... ; b) WEB-browser's plugin-based. Server side send only dynamically data (usually as JSON responses) and static HTML template (usually consist of JS library), any server side applications (PHP, JSP...) can do this, i.e. retrieve requested data then send it as a JSON response. Client-side WEB-browser plugin or JS library sends request for data, then render widgets (forms, lists) by changing HTML template page dynamically. See for example how to render a data-grid by JS on WEB-browser side: https://js.devexpress.com/Demos/WidgetsGallery/Demo/DataGrid/Overview/AngularJS/Light/. Thanks to Google everyone uses its HTML docs. Google boosted JS very hard. So client side JS method took a really huge part of WEB-interfaces.

Anyway there are many cases when both methods are used together, i.e. building dynamic HTML on both client and server sides. For example Beige-EIS for WEB-store uses pure JSP even without AJAX. But payment gateway PayPal probably uses client side JS dynamic WEB.

Beige-WEB uses server-side JSP pages to generate whole HTML pages or part of them (i.e. data plus HTML tags). Beige-WEB uses AJAX requests and JSON responses that modifies HTML page (both widgets and data) partially, e.g. when you push the save button, then it will send AJAX request, then a received JSON multi-target response will be used to refresh the form, the underlying list, popup message (e.g. update success) and other things that are included into this JSON response. Using AJAX and JSON allows to reduce traffic, i.e. it's faster then refreshing the whole page on form submit. See for example beige-web/src/main/webapp/WEB-INF/jsp/esj.jsp:

<%@ page language="java" contentType="application/json; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
<jsp:include page="tml/var.jsp"/>
<jsp:useBean id="usdDp" class="java.util.HashMap" scope="request"/>
<c:set var="ent" value="${rvs.uvs.ent}" scope="request"/>
<c:set var="frPlNm" value="frmMnPl" scope="request"/>
<c:set var="frAct" value="srv" scope="request"/>
<c:import url="/WEB-INF/jsp/tml/ed.jsp" varReader="rdEdEn" charEncoding="UTF-8">
{"mlTrRsp":
  [{"trgNm": "${frPlNm}", "cont": "${utJsp.toJsonStrCls(rdEdEn)}",
    "trgPrNm": null, "jscr": null}
    <c:set var="jscr" value="${hldUvd.setJs(rvs,usdDp,frPlNm)}bsOpnDlg('${frPlNm}EdDlg');"/>
    <c:if test="${not empty rvs.msgSuc}">
      <c:set var="jscr" value="${jscr}bsShwSuc('${i18n.getMsg(rvs.msgSuc, rvs.upf.lng.iid)}');"/>
    </c:if>
    <c:if test="${not empty rvs.msgWrn}">
      <c:set var="jscr" value="${jscr}bsShwWrn('${i18n.getMsg(rvs.msgWrn, rvs.upf.lng.iid)}');"/>
    </c:if>
    <c:if test="${not empty rvs.msgErr}">
      <c:set var="jscr" value="${jscr}bsShwErr('${i18n.getMsg(rvs.msgErr, rvs.upf.lng.iid)}');"/>
    </c:if>
    <c:if test="${not empty numJsAf}">
      <c:set var="jscr" value="${jscr}${numJsAf}"/>
    </c:if>
    <c:set var="lsPlNm" value="lstMnPl" scope="request"/>
    <c:set var="prfFlOrFrm" value="${lsPlNm}" scope="request"/>
    <c:set var="rndLst" value="lj" scope="request"/>
    <c:import url="/WEB-INF/jsp/tml/lst.jsp" varReader="rdEnts" charEncoding="UTF-8">
      ,{"trgNm": "${lsPlNm}lst", "cont": "${utJsp.toJsonStrCls(rdEnts)}",
        "trgPrNm": null, "jscr": "${utJsp.toJsonStr(jscr)}"}
    </c:import>
  ]
}
</c:import>
This response refreshes entity form (created by jsp/tml/ed.jsp from the passed by the business service the entity model and the settings) in the HTML page inside DIV target with ID=${frmMnPl}. And so it does for the entities list (data-grid). JSON response also consists of JavaScripts, i.e. show error/warn/success message and open the modal form.

Which method are the best? First, ignore buzz words such as "modern", "newest" (maybe someones use even "cutting age", "ground breaking" for their libs). Ordinary competition (contest) can give a precise answer, so just try different approaches (libs) for real-life complex tasks. For example the invoice and its item forms in Beige-EIS are changed dramatically depending on: a) taxable or not, b) taxes included in price c) taxes item/invoice based d) cumulative tax rate or not e) destination-based sales tax. A WEB-store list can show items in very complex way depending of many things. Also try to make generic viewer (rendering entities forms and lists with filters according to settings) similar to Beige-WEB. A lot of new libs and frameworks infest, but they do not always impress at the second deep look. They usually support only private key (RDBMS) - either auto-incremented integer or GUID. Beige-WEB supports any private key including composite (it doesn't support GUID because of its cross-platform problems and in favor to its more fast and cross-platform analog, but it can be implemented easy if it's needed, e.g. SQLITE version will be used Text appearance of GUID).

Client side disadvantages:

Server side disadvantages:

To create dynamic WEB in optimal and safe way, HTML5+ (an extension) should work without JS. It should be a restricted, strong-typed, narrow-functional language. For example, changing input-number with ID=quantity will invoke its "calculation: #total=#quantity*#price", and inputs #total and #price must be also of number type. Of course inputs must handle decimal places and internationalization by itself (non-JS). It also should have dedicated macro-commands for making UI widgets on client side that will work fast without JIT-compiler. So disabling JS never broke such applications. If you look at Beige-WEB source code, then you should see that it ready for such this HTML5+ (or a browser's restricted plugin) client side version, i.e. all we need to do is creating new JSP pages that respond with such HTML5+ and JSON responses (they seems to be more optimal than XML) with pure data. Servlets and business services will be the same.