Google oAuth2 Provider Details In this article, I am going to show Google oAuth2 Provider Details. OAuth 2.0 (Open Authorization), an open protocol for token-based authorization on the internet. The process for obtaining the token is called an authorization flow. OAuth 2.0 provides users with the ability to grant third-party application access to web resources […]
Month: March 2020
How to alter Cassandra Keyspace
How to alter Cassandra Keyspace In this article, I am going to show How to alter Cassandra Keyspace. ALTER KEYSPACE can be used to alter properties such as the number of replicas and the durable_writes of a KeySpace Syntax ALTER KEYSPACE <identifier> WITH <properties> ALTER KEYSPACE “KeySpace Name” WITH replication = {‘class’: ‘Strategy name’, ‘replication_factor’ […]
How to create Cassandra Keyspace
How to create Cassandra Keyspace In this article, I am going to show How to create Cassandra Keyspace. A keyspace in Cassandra is a namespace that defines data replication on nodes. A cluster contains one keyspace per node. Syntax CREATE KEYSPACE <identifier> WITH <properties> CREATE KEYSPACE “KeySpace Name” WITH replication = {‘class’: ‘Strategy name’, ‘replication_factor’ : […]
Tortoise SVN Client Installation in Windows
Tortoise SVN Client Installation in Windows In this article, I am going to show Tortoise SVN Client Installation in Windows. Tortoise SVN client is an interface to access the SVN server and to commit code into the SVN server. Step 1: Download Tortoise SVN client is free software and we can download it from […]
How to import jar as a project in eclipse
How to install Java De-Compiler
How to install Java De-Compiler Java decompiler is very important to decompile the .class file into a .java file which is plain text file. So In this article, I am going to show how to install Java De-Compiler in windows and Linux/Unix systems. There are 2 ways to install java -decompiler in the systems JD-GUI […]
Apache ActiveMQ Installation Windows
Apache ActiveMQ Installation Windows In this tutorial, I’ll show how to download Apache ActiveMQ, how to installation ActiveMQ in the windows system and how to start and stop ActiveMQ. Apache ActiveMQ Installation Windows What is Apache ActiveMQ Apache ActiveMQ is an open-source message broker written in Java. It offers JMS, REST and WebSocket interfaces. […]
Apache Cassandra Database Installation in Windows
Apache Cassandra Database Installation in Windows In this article, I am going to show how to install Apache Cassandra Database in Windows. Apache Cassandra is a highly scalable, high-performance distributed database designed to handle large amounts of data across many commodity servers, providing high availability with no single point of failure. It is a type […]
Sorting List by using Comparator Interface
Sorting List by using Comparator Interface In this article, I am going to explain the Sorting List by using Comparator Interface. Objects Type List can be sorted by using a Comparator interface. By using comparator we can sort the list of objects by a single field or multiple fields either in ascending order or descending […]
How to Sort a List By Using Comparable Interface
How to Sort a List By Using Comparable Interface In this article, going to explain How to Sort a List By Using Comparable Interface. Wrapper Class type List can be sorted by using the Collection.sort() method but the List type is Object then we have to use comparable interface to sort. Example Create VO Class […]