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.
- Host: GitHub
- URL: https://github.com/jabrena/java9-by-example
- Owner: jabrena
- License: mit
- Created: 2017-04-02T16:08:22.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-05-04T15:27:04.000Z (almost 8 years ago)
- Last Synced: 2025-02-13T20:23:20.149Z (3 months ago)
- Topics: java-9, presentation
- Language: JavaScript
- Homepage: https://jabrena.github.io/java9-by-example/www/#/
- Size: 6.65 MB
- Stars: 2
- Watchers: 5
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```