@Service: It tells that particular class is a Service to the client. Service class contains mainly business Logic. If you have more Service classes in a package than provide @Qualifier otherwise it should not require @Qualifier.
Case 1:
@Service("employeeService")
public class EmployeeServiceImpl implements EmployeeService{
}
Case2:
@Service
public class EmployeeServiceImpl implements EmployeeService{
}
both cases are working...