Java

Relational Operators in Java — step-by-step Programming tutorial on Progressive Robot

Relational Operators in Java

URL: https://www.progressiverobot.com/relational-operators-in-java/ Relational Operators in Java are used to comparing two variables for equality, non-equality, greater than, less than, etc. Java relational operator always returns a boolean value – true or false. Relational Operators in Java Java has 6 relational operators. \== is the equality operator. This returns true if both the operands are referring […]

Read more
static keyword in java — step-by-step Programming tutorial on Progressive Robot

static keyword in java

URL: https://www.progressiverobot.com/static-keyword-in-java/ static keyword in Java is used a lot in java programming. Java static keyword is used to create a Class level variable in java. static variables and methods are part of the class, not the instances of the class. static keyword in java ![java static, static keyword in java](images/static-keyword-in-java-section-1.png) Java static keyword can […]

Read more
Tomcat DataSource JNDI Example in Java — step-by-step Programming tutorial on Progressive Robot

Tomcat DataSource JNDI Example in Java

URL: https://www.progressiverobot.com/tomcat-datasource-jndi-example-java/ Welcome to Tomcat DataSource JNDI Example Tutorial. We looked at the [JDBC DataSource](/community/tutorials/java-datasource-jdbc-datasource-example "JDBC DataSource Example – Oracle, MySQL and Apache DBCP Tutorial") in the last tutorial and learned how to use that in standalone java application. Tomcat DataSource JNDI ![tomcat datasource, jndi example, tomcat jndi, jndi tutorial](images/tomcat-datasource-jndi-example-java-section-1.png) Actual benefit of DataSource comes […]

Read more
Collections in Java - Everything You MUST Know — step-by-step Programming tutorial on Progressive Robot

Collections in Java – Everything You MUST Know

Java Collections Framework is one of the core parts of the Java programming language. Collections are used in almost every programming language. Most of the programming languages support various type of collections such as [List](/community/tutorials/java-list), [Set](/community/tutorials/java-set), [Queue](/community/tutorials/java-queue), [Stack](/community/tutorials/java-stack), etc. What is Java Collections Framework? Collections are like containers that group multiple items in a single […]

Read more
Factory Design Pattern in Java — step-by-step Programming tutorial on Progressive Robot

Factory Design Pattern in Java

Welcome to the Factory Design Pattern in Java tutorial. Factory Pattern is one of the Creational Design pattern and it's widely used in JDK as well as frameworks like Spring and Struts. Factory Design Pattern ![factory design pattern, factory design pattern in java, factory pattern, factory method pattern, factory pattern example](images/factory-design-pattern-in-java-section-1.png) The factory design pattern […]

Read more
How To Create a Minecraft Server on Ubuntu 18.04 — step-by-step Linux tutorial on Progressive Robot

How To Create a Minecraft Server on Ubuntu 18.04

Minecraft is a popular sandbox video game. As of late 2019, it was the second best-selling video game of all time. In this tutorial, you will create your own Minecraft server so that you and your friends can play together. Specifically, you will install the necessary software packages to run Minecraft, configure the server to run, and then deploy the game.

Read more
CHAT