pointbazaar 379ddb82bf Remove test dependency lombok
* lombok was almost never used. also gave me errors on 'mvn install' on ubuntu 20.04 https://github.com/rzwitserloot/lombok/issues/1651 . unless there are plans to use it more extensively, maybe it is best to remove it, to clean up the dependencies and enable me (and maybe others) to build without errors.

* fix Employee.java without lombok
2020-08-15 10:31:25 +02:00
2020-08-15 10:31:25 +02:00
2019-09-13 23:46:39 +02:00
2015-10-05 20:19:18 +02:00
2020-08-15 10:31:25 +02:00
2019-01-24 14:49:40 +01:00

j2html

Java to HTML generator. Enjoy typesafe HTML generation.

The project webpage is j2html.com.

Getting started

Add the maven dependency

<dependency>
    <groupId>com.j2html</groupId>
    <artifactId>j2html</artifactId>
    <version>1.4.0</version>
</dependency>

Or the gradle dependency

compile 'com.j2html:j2html:1.4.0'

Import TagCreator and start building HTML

import static j2html.TagCreator.*;

public class Main {
    public static void main(String[] args) {
        body(
            h1("Hello, World!"),
            img().withSrc("/img/hello.png")
        ).render();
    }
}

The above Java will result in the following HTML:

<body>
    <h1>Hello, World!</h1>
    <img src="/img/hello.png">
</body>

Find more examples at http://j2html.com/examples.html

Description
Java to HTML generator. Enjoy typesafe HTML generation.
Readme 4.9 MiB
Languages
Java 96.5%
CSS 1.8%
HTML 1.4%
JavaScript 0.3%