i get this exception when starting the server :
HTTP Status 405 - Request method 'GET' not supported
my controller is :
@Controller
public class HomeController {
private static final Logger logger = LoggerFactory.getLogger(HomeController.class);
@RequestMapping(value = "/", method = RequestMethod.POST)
public String home(Locale locale, Model model) {
logger.info("Welcome home! The client locale is {}.", locale);
return "login";
}
}
i really don't know what is the problem, since i am a very new to spring, could not even figure out what the problem is.
could somebody guide me to fix this