Today we are going to show you how to encrypt GET parameters. HTTP GET parameter value is going to be encrypted and decrypted using javax.crypto package. This way you will be able to easily send sensitive data in your URLs.
Here is our solution
Ciphe...
Today we will talk more about java sorting mechanisms. If you want to do sorting of objects of your types, one of the solutions is implementing Comparable interface. In our example we are going to sort a wallet which is full of dollars :) Here is our...
SQL GROUP BY syntax
SQL GROUP BY clause is used in conjunction with the aggregate functions. It groups the result set by one or more columns.
customer_name
SUM(service_price)
Keith Kenny
3700.00
Peter Olson
2500.00
Peter Kovalik
700.00
Ro...
This tutorial is about SQL privileges also known as Account Management. I used mysql database engine in our examples.
To manage your account there are 6 commands you should be familiar with: CREATE USER, DROP USER, GRANT, RENAME USER, REVOKE, SET PAS...
In this tutorial we are going to describe Jenkins installation and configuration with Maven, Ant and GitHub. We are going to use a Tomcat Application Server 7. If you don’t have Tomcat installed please refer to our earlier tutorial Eclipse Tomc...
In this tutorial we are going to create a WebService based on Axis2 wsdl2java approach. A WSDL file will be taken from our previous tutorial Axis2 Java2WSDL approach
In this tutorial we are going to discuss following topics:
- Setting up Maven 3 Axis...
SQL ORDER BY clause defines order of the rows that were pointed in the SELECT clause.
The syntax is:
Just remember we use SQL ORDER BY clause to order result-set by column or columns specified from left to right and if you forget to use ASC or DESC a...
In this tutorial we are going to show you how to use WordPress API to get posts data. If You don’t have a Wordpress Environment installed check out our video where we show how to quickly get Wordpress Development Environment up and running. Tutorial ...
priya Wrapper Classes are Classes that have written to make objects from the primitive types in Java. They are used to wrap the primitive values in... – Wrapper Classes in Java
Priya Method overloading is not possible by changing the return type of the method because there may occur ambiguity. your site content are really awesome ,... – Overloading and Overriding in Java