I am a novice springs programmmer and I have just completed reading my springs mvc 3.0 concepts.I tried writing my first code in springs but I am facing problems in removing compile time errors.The errors are shown on these lines
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.propertyeditors.CustomDateEditor;
import org.springframework.stereotype.Controller;
import org.springframework.ui.ModelMap;
import org.springframework.validation.BindingResult;
import org.springframework.web.bind.WebDataBinder;
import org.springframework.web.bind.annotation.InitBinder;
import org.springframework.web.bind.annotation.ModelAttribute;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.support.SessionStatus;
The Error shown is
The import org.springframework.beans.factory.annotation.Autowired cannot be resolved
and same for other import
My files placements I think are proper
All the jar files are placed as
I am unable to think on the problem