Sandeep G
-
How to Create a maven dependency via shell script ?
sudo vi dependencygen.sh LIB_PATH=”/…/…/WebContent/WEB-INF/lib” # Absolute path to this script, e.g. /home/user/bin/foo.sh SCRIPT=$(readlink -f “$0”) # Absolute path this… Read More
-
How to configure TFS command client
TFSStep 1: Download the command client from Microsoft Site. Download Team Explorer Everywhere from this link. (Download the file TEE-CLC-x.x.x.zip).… Read More
-
How to check-out the code in TFS ?
Make sure your command client for TFS is downloaded and set to PATH variables Refer link: How to Set TFS… Read More
-
How to move a column to first in mysql ?
Use the following query: ALTER TABLE table_name CHANGE COLUMN column_name column_name INTEGER NOT NULL AUTO_INCREMENT FIRST; INTEGER NOT NULL AUTO_INCREMENT… Read More
-
TFS Version Control
As any version control (SVN, GIT .. ) is having different workflow ;TFS is also having its own workflow. All… Read More
-
How to host JENKINS ?
Interesting topic .. Will be coming soon .. Read More
-
How to launch website via Apache ?
Simple steps: Install the Apache2 Place your files under any folder in the server Configure Apache2 000-default.conf file to point the file… Read More
-
How to resolve cast exception in toArray() method ?
Java toArray() method directly for Primitive Data Type. How to use same method for String or Other Custom class… Read More
-
How to downgrade Java application from higher to lower.
Challenge to build Java 1.6 application to run under Java 1.5 environment Read More
