Self-paced

Explore our extensive collection of courses designed to help you master various subjects and skills. Whether you're a beginner or an advanced learner, there's something here for everyone.

Bootcamp

Learn live

Join us for our free workshops, webinars, and other events to learn more about our programs and get started on your journey to becoming a developer.

Upcoming live events

Learning library

For all the self-taught geeks out there, here is our content library with most of the learning materials we have produced throughout the years.

It makes sense to start learning by reading and watching videos about fundamentals and how things work.

Full-Stack Software Developer - 16w

Data Science and Machine Learning - 16 wks

Search from all Lessons


LoginGet Started
← Back to Lessons

Weekly Coding Challenge

Every week, we pick a real-life project to build your portfolio and get ready for a job. All projects are built with ChatGPT as co-pilot!

Start the Challenge

Podcast: Code Sets You Free

A tech-culture podcast where you learn to fight the enemies that blocks your way to become a successful professional in tech.

Listen the podcast
  • learn to code

  • Java

Edit on Github

¿What is Java? Learn to code in Java

How to install java?

How to install java?

We are going to be focusing on the JSE (Java Standard Edition) and and JEE (Java Enterpraise Edit.).

You are going to find that there is a Java runtime environment and a JDK (development kit).

We are developers, we need the JDK.

The oracle is the owner of the "official" version of Java, but a few years ago the Java community decided to create the Java Community Version called OpenJDK to avoid corporate interest, the OpenJDK makes more sense to avoid any possible fees and its already compatible with all docket containers and packages.

For windows users

  • For windows download the isntaller from the openjdk website.
  • For ubuntu users apt-get install OpenJDK.
  • For mac users use brew install OpenJDK.

Maven

Archetype: Its a maven configuration Maven allows you to create projects, you can pick an archetype (boilerplate) and it creates a pom.xml file that is the equivalent to a package.json in javascript, the project also comes with a src, a src/main and a src/test.

Maven also has a pubic website with all packages: mvnrepository.com, you can find all the popular java packages available to install, normally you will manually add the package URL into your pom.xml (for maven) or build.grade file (if using Gradle).

Java typical versions

Spanshot and Release

Creating a Springboot project

Everything starts on start.spring.io