2017-12-02 11:47:24 +01:00
2017-12-02 00:37:38 +01:00
2017-01-07 16:03:18 +01:00
2015-10-05 20:19:18 +02:00
2017-11-28 00:14:12 +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.2.1</version>
</dependency>

OR the gradle dependency

compile 'com.j2html:j2html:1.2.1'

Import TagCreator and start building HTML

import static j2html.TagCreator.*;

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

The above Java will result in the following HTML:

<body>
    <h1 class="example">Heading!</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%