Category java

Building REST service in Microservices with Spring Boot – Day 2

What is Java System Properties and Spring Application Configuration? Java System Properties Java maintains a set of system properties for its operations. Each java system property is a key-value (String-String) pair. For example, one such system property is “java.version”=”1.7.0_09“. All…

Java Class, Object and Method

Class Fundamentals A Java class is often used to represent a concept. A Java class is often used to store or represent data for the construct that the class represents. For example, you could create a model (a programmatic representation)…

Java Data Types and Operators

Why Data Types Are Important Java is a strongly-type language. It means that every variable defined must have a data type assigned to it. Java’s Primitive Data Types Integer Floating Point Character True/False byteshortintlong floatdouble char boolean 1, 2, 3,…

Maven and github

Running Maven from Command-Line To run a Maven build from the command line / terminal, you need to install the Maven command line tooling. Compile and build a Java runtime library with Maven To compile you project from command line,…

Java and Maven

Run your Java console application in Eclipse Debug your Java console application in Eclipse Introduction to Maven Dependency and Maven Central Repository Reference: A repository in Maven holds build artifacts and dependencies of varying types. There are exactly two…

Introduction to Maven

Reference: Apache Maven is a software project management and comprehension tool. Based on the concept of a project object model (POM), Maven can manage a project’s build, reporting and documentation from a central piece of information. Maven, a Yiddish…