Giter Site home page Giter Site logo

java-in-60-minutes's Introduction

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/

tar -xvf openjdk-15.0.1_osx-x64_bin.tar
sudo mv jdk-15.0.1.jdk /Library/Java/JavaVirtualMachines
  1. Open .bash_profile and add the following entries at the end of it.
JAVA_HOME="/Library/Java/JavaVirtualMachines/jdk-15.0.1.jdk/Contents/Home"
PATH="${JAVA_HOME}/bin:${PATH}"
export PATH
  1. Verify the JDK installation
java --version
  1. Download Maven: https://maven.apache.org/download.cgi

  2. Extract it & move to /opt

tar -xvf apache-maven-3.6.3-bin.tar
sudo mv apache-maven-3.6.3/ /opt
  1. Open .bash_profile and add the following entries at the end of it.
export PATH=/opt/apache-maven-3.6.3/bin:$PATH
  1. Verify the Maven installation
mvn --version

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

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

Details

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

Details

βœ… Docker 🐳 (5 minutes)

Details

java-in-60-minutes's People

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.