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 […]
Map with Different Data Types as Values
By Akshata Dupare 1. Introduction 2. Main class and main method 3. hashMap Example 4. Adding some String, String as key and value 5. Adding int as value 6. Adding boolean as value 7. Adding String[] as value 8. print array values 9. Adding list of String as value 10. Adding list of Integer as value 1.Introduction▲ This program shows […]
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 { […]
Java Project with Hibernate and JPA
1 Introduction 2 Create a Java project and a package 3 Create a database and a table in Mysql 4 Add Dependencies 5 Create Student class 6 Create /resource/META-INF/persistence.xml file 7 Create Main Class 8 Create a method to a record to DB Table 9 Print list of Students 10 Update […]
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 […]