| »Common Controls |
| The Common-Controls form a Java™ Presentation Framework based on Java Servlets, Java Serverpages (JSP™) and Struts. The Presentation Framework contains the most common control elements like lists, trees, tabfolders, menus and forms, which are required for the development of J2EE™ applications with HTML frontends. |
|
| |
| »Jtpl |
Jtpl is a template engine for Java Servlet which allows you to store your HTML code apart from your Java code.
A template engine is a software module which is used to generate HTML pages. The layout of a HTML page is defined within a template file, which can be designed by using a standard HTML editor. At run-time, the application program instructs the template engine to load the template, fill in
variable values, repeat blocks and produce the final HTML page.
There are other template engines (like Velocity, WebMacro or Struts) which are huge and use complex syntaxes.
Jtpl however uses a very simple template syntax. All processing (loops, if-then-else logic) and variable formatting is done in the Java code, which leads to better separation of layout and code, and no new complex syntax has to be learned. |
|
| |
|