All modern programming languages needs to have concept of variables. Variables are there in a programming language to store data into. There are 8 data type defined in Java which are inbuilt in java c...
If you are looking to forward non-www pages on your domain to www. Here is what you need to do.
Login to CloudFlare and go to 'Page Rules' section of your domain.
If the URL matches , in t...
While automating a form selection with Selenium and Java, It's a good practice to randomize your form values. Here is how you can select random values on radio buttons. Lets suppose you have a radio b...
Step 1 : Get the Foreign Key Name.
SHOW CREATE TABLE tableName;
Note the name of Foreign key (which is mostly auto generated) output will look something like
CONSTRAINT `FK4C5B93445F11A0B7` F...
Once you have installed XAMPP, You have your system ready necessary development programs like PHP, MySQL etc. But you cannot yet run those commands from you command line, Because your terminal does no...
Apache Tomcat is used to deploy your Java Servlets and JSPs. So in your Java project you can build your WAR (short for Web ARchive) file, and just drop it in the deploy directory in Tomcat.
So basi...
This post shows the steps to configure Auto Suggest Feature on the Solr Search in Broadleaf Commerce Framework.
If your Solr Configuration is embedded in the broadleaf framework instead of being an...
Starting the solr server.
You can cd to /path/to/solr-5.0.0/bin and execute the following command:
./solr -p 8983 -s /path/to/solr/home
path/to/solr/home is the path where you store your ind...
BroadLeaf DemoSite comes with a embedded Solr, which is basically to have the ease of demonstration. But Ideally you should be using a separate Solr Instance with your web application for obvious perf...
mysql -h host.address.for.rds.server -u rdsusername -p rdsdatabase < backupfile.sql
host.address.for.rds.server = this will be what is referred to as the "end point" in your RDS descripti...