To start the my project in windows i have to set the java environmental variable in cmd using below command
set JAVA_HOME = D:\Java\jdk1.7.0
but it didn't set the environment variable, i don't know what the issue.After pending couple hours i find the reason that is due to white space on both side of = symbol.Because of this environmental variable not getting set and i changed by command to
set JAVA_HOME=D:\Java\jdk1.7.0
after that it is working fine.
My question is why this both command are not equal?