Open the RDS web console.
Open the “Parameter Groups” tab.
Create a new Parameter Group. On the dialog, select the MySQL family compatible to your MySQL database version, give it a name and conf...
You need to run these commands as root to show other users' processes, for example:
sudo lsof -i ':80'
If you want to close any particular process you can kill the process by executing below comma...
In this tutorial we will setup a simple Hello World Web Application Based on Spring 4. The configuration will be done in Java. As you know with Spring 3 or earlier the only option of doing the configu...
This post will show you how to consume a RestFul API in Spring through RestTemplate
We will be consuming data from the Google Books API, This URL returns of Books for ISBN 9380658745. The result th...
The below table lists out the different online book shopping sites in India and weather they have a public product API available or not, and do they have affiliate programs on their site.
Ecomm...
1. If you have your parameter attached to the URL after the question mark like
http://www.yoursite.com/someRoute?key=value
Your route for this controller will look something like this
Route::ge...
I have started working with Selenium Web Driver to Automate testing for a web application that I have been working on. Selenium is a great tool to Automate testing for your software when there are man...
Here is the Java example that shows how to get the random key value set from a Hash Map in Java.
package info.balloons.SeleniumTest;
import java.sql.Timestamp;
import java.util.Calendar;
import...
Here are the Java examples that shows how you can get the current timestamp in Java
-To get Unix (Epoch) timestamp
public class App
{
public static void main( String[] args )
{...
This post will guide you how you on how you can run the automation test scripts with Selenium Web Driver and Junit. I am using Eclipse as my IDE and Maven as my build tool.
This post assumes that y...