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

https://github.com/jabrena/java9-by-example

A presentation about main Java 9 features included.
https://github.com/jabrena/java9-by-example

java-9 presentation

Last synced: 25 days ago
JSON representation

A presentation about main Java 9 features included.

Awesome Lists containing this project

README

        

# java9-by-example
A presentation about main Java 9 features included.

Address:
https://jabrena.github.io/java9-by-example/www/

*Deployment notes*

To launch in localhost your the website, exists several alternatives. With Node.js you can use the following module.

``` bash
npm install http-server -g
http-server ./YOUR_PATH -p 3000
```

Using Python, you can use the following command:

``` bash
python -m SimpleHTTPServer
```

##Create a Java project from Scratch with Gradle

```
gradle init --type java-library
```