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

https://github.com/cuongndc9/java-in-60-minutes

Java πŸ‘ΈπŸ», I hate 🀬 you.
https://github.com/cuongndc9/java-in-60-minutes

103cuong 4pet 4pet-social docker java java-tutorials spring-boot

Last synced: 5 months ago
JSON representation

Java πŸ‘ΈπŸ», I hate 🀬 you.

Awesome Lists containing this project

README

          

Not using GitHub? Find me on [LinkedIn](https://www.linkedin.com/in/cuong9/)!
# java-in-60-minutes

> Java πŸ‘ΈπŸ», I hate 🀬 you.

## βœ… Setup environment 🌳 on MacOS πŸ‘©πŸΌβ€πŸ’» (5 minutes)

1. Download JDK: https://jdk.java.net/15/

2. Extract it & move to /Library/Java/JavaVirtualMachines/

```sh
tar -xvf openjdk-15.0.1_osx-x64_bin.tar
sudo mv jdk-15.0.1.jdk /Library/Java/JavaVirtualMachines
```

3. Open .bash_profile and add the following entries at the end of it.

```sh
JAVA_HOME="/Library/Java/JavaVirtualMachines/jdk-15.0.1.jdk/Contents/Home"
PATH="${JAVA_HOME}/bin:${PATH}"
export PATH
```

4. Verify the JDK installation

```sh
java --version
```

5. Download Maven: https://maven.apache.org/download.cgi

6. Extract it & move to /opt

```sh
tar -xvf apache-maven-3.6.3-bin.tar
sudo mv apache-maven-3.6.3/ /opt
```

7. Open .bash_profile and add the following entries at the end of it.

```
export PATH=/opt/apache-maven-3.6.3/bin:$PATH
```

8. Verify the Maven installation

```sh
mvn --version
```

## βœ… Java Core πŸ‘» (20 minutes)

```java
public class AwesomeJava {
public static void main(String[] args) {
System.out.println("Hello πŸ–– Java. I love ❀️ you.");
}
}
```

**[Details](./java-core)**

- [Java Cheat Sheet](https://hackr.io/blog/java-cheat-sheet)
- [Object-Oriented Java](https://www.codecademy.com/learn/learn-java/modules/learn-java-object-oriented-java-u/cheatsheet)

## βœ… Spring Boot πŸ’… (30 minutes)

**[Details](./chichi)**

## βœ… Docker 🐳 (5 minutes)

**[Details](./chichi)**