I'm trying to make a simple web application which has a login and a welcome page using Spring MVC. The code is as follows:
web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app id="WebApp_ID" version="2.4"
    xmlns="http://java.sun.com/xml/ns/j2ee" 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee 
    http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
    <display-name>Spring MVC Application</display-name>
   <servlet>
      <servlet-name>spring</servlet-name>
      <servlet-class>
         org.springframework.web.servlet.DispatcherServlet
      </servlet-class>
   </servlet>
   <servlet-mapping>
      <servlet-name>spring</servlet-name>
      <url-pattern>/</url-pattern>
   </servlet-mapping>
</web-app>
spring-servlet.xml
<?xml version="1.0" encoding="UTF-8"?>  
<beans xmlns="http://www.springframework.org/schema/beans"    
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"    
    xmlns:p="http://www.springframework.org/schema/p"    
    xmlns:context="http://www.springframework.org/schema/context"    
    xsi:schemaLocation="http://www.springframework.org/schema/beans    
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd    
http://www.springframework.org/schema/context    
http://www.springframework.org/schema/context/spring-context-3.0.xsd">    
<context:component-scan base-package="com.test"></context:component-scan>  
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">  
<property name="prefix" value="/WEB-INF/jsp/"></property>  
<property name="suffix" value=".jsp"></property>  
</bean>  
</beans> 
Controller.java
@Controller
@RequestMapping("/Authentication")
public class TestController{
    @RequestMapping(value="/")
    public String Login(){
        return "Login";
    }
    @RequestMapping(value="Authenticate", method=RequestMethod.GET)
    public String Authenticate(){
        //Authenticates and returns "Welcome"
    }
} 
The project name is Authentication. There are Login.jsp and Welcome.jsp under /WEB-INF/jsp/.
However, when I'm trying to run the project, I am getting HTTP Status 404 error and the following warning:
org.springframework.web.servlet.PageNotFound noHandlerFound WARNING : No mapping found for http request with uri [/Authentication/] in dispatcherservlet with name 'spring'
Why am I getting this warning even though the mappings look fine?
 
     
    