An open API service indexing awesome lists of open source software.

https://github.com/runabol/spring-boot-starter-jiccup


https://github.com/runabol/spring-boot-starter-jiccup

Last synced: about 1 year ago
JSON representation

Awesome Lists containing this project

README

          

# Spring Boot Starter Jiccup

Spring Boot integration with [Jiccup](https://github.com/creactiviti/jiccup), a Clojure inspired HTML rendering library.

Watning: This project is still in an experimental phase.

# Install

```

com.creactiviti
spring-boot-starter-jiccup
0.0.1-SNAPSHOT

com.creactiviti
jiccup
0.0.1-SNAPSHOT


maven-snapshots
http://oss.sonatype.org/content/repositories/snapshots
default

false


true

```

# Hello World

```
import static com.creactiviti.jiccup.Elements.*;

...

@Controller
@ResponseBody
public class Hello {

@RequestMapping("/hi")
public Html render () {
return html (
body(
h1(content("Hello World"))
)
);
}

}
```

# License

Jiccup is released under version 2.0 of the Apache License.