Code:
public class EmployeeServicesTestCase {

	/**
	 * @param args
	 */
	public static void main(String[] s)throws Exception {
		// TODO Auto-generated method stub
		BeanFactory beans=new XmlBeanFactory(new ClassPathResource("applicationContext.xml"));
		EmployeeService es=(EmployeeService)beans.getBean("employeeService");
		
		es.incrementSalary(Integer.parseInt(s[0]), 1000);
...