Installing Spark on Ubuntu Linux

Installing Apache Spark on Ubuntu Linux

Table of ContentsOverviewInstallation Environment & Software PrerequisitesStep 1: Java-JDK Installation:Step 2: Scala Installation:Step 3: Download Apache Spark:Step 4: Create a folder using mkdir command to save Spark installation filesStep 5:…

Installing Scala on Ubuntu Linux

Installing Scala on Ubuntu Linux

Table of ContentsOverviewInstallation Environment & Software PrerequisitesStep 1: Java-JDK Installation:Step 2: Download Scala:Step 3: Scala Installation:Step 4: Create a folder using mkdir command for saving Scala installation filesStep 5: Extract…

Spring boot as windows service

Spring boot as windows service

Table of Contents1. Overview2. Steps to Configure spring boot as windows service or processStep 1: Download Service WapperStep 2: Rename Service WapperStep 3: Create Configuration XML filemy-spring-boot-service.xmlStep 4: Copy Jar…

Spring boot Rest API Document using swagger

Spring boot Rest API Document using swagger

Table of Contents1. OverviewSteps to configure Swagger in Spring ApplicationStep #1: Add dependency of Swagger Maven (pom.xml)GradleStep #2: Enable SwaggerStep #3: Add Swagger Configuration2. Example2.1 pom.xml2.2 application.properties2.3 SpringBootConfig2.4 HelloController2.5 Employee2.6 Output3. Concussion4….

Spring boot Flyway Java Based Migration Example

Spring boot Flyway Java Based Migration Example

Table of Contents1. OverviewSteps to configure Java based migration:2. Example2.1 pom.xml2.2 application.properties2.3 db/migration/V4__Another_user.java2.4 resources/db/migration/V1__Create_Employee_Table.sql2.5 resources/db/migration/V2__Employee_Insert.sql2.6 resources/db/migration/V3__Employee_Insert.sql2.7 Demo3. Concussion4. References5. Source Code 1. Overview In this article, We will learn about Spring boot…

spring boot yml properties example

spring boot yml properties example

Table of Contents1. Overview2. Example2.1 pom.xml2.2 application.yml2.3 SpringBootConfig2.4 HelloController2.5 Output3. References4. Source Code 1. Overview This article is about spring boot yml properties example, we can manage spring boot configuration inapplication.properties or…