Create Virtual Private Server (EC2 Instance) in AWS
By Nutan 1 Introduction 2 Login to AWS account 3 Search EC2 in AWS Management Console 4 Create VPS 5 Convert private key .pem file to Putty Private Key .ppk file 6 Connect to VPS from your local system through Putty 1.Introduction▲ This document describes how to create virtual private […]
Plotting with Gral
1. Introduction 2. Main class 3. Call method for Simple Bar Chart 4. Create an object of GralSimpleBarPlot class 5. Extend this class to parent class that contains common things like JFrame, color, size etc 6. Extend this class to JPanel 7. Add version for serialization 8. Constructor of MainGralPanel 9. Render Graph 10. Set frame properties 11. Call render method […]
Printing Multi-dimensional Arrays
By Akshata Dupare 1. Introduction 2. Main class and main method 3. Create another method for stringArray 4. Another way to print arrays 5. Factory method to print arrays 6. Add two dimensional array 7. Factory method to print arrays 8. Factory method deepToString to print Multiple or 2d arrays 9. Multi-loop to print multi-dimensional array 10. For loop […]
First Introduction To Operators In Java
By Thriveni 1. Introduction 2. main class 3. initialize a value 4. adding 1 value 5. substracting -1 value 6. adding +9 value 7. assigning conditional value 8. adding a and b values 1.Introduction▲ using Some Operators adding and substractions 2.main class▲ 2.1.Code▲ 10://200 package name 20:package xv.training; 30: 40:// main class 50:public class SomeOperators { […]
Deploy Simple Spring Boot Web Application in AWS Elastic Beanstalk
1. Introduction This document describes how to deploy simple spring boot web application in AWS Elastic Beanstalk. We need one spring boot project and account in AWS. 2. Create one spring boot web application Create one simple spring boot web application, which will return ‘Hello World’ on RequestMapping(“/”) 3. Login […]