HTTP Status 405 - HTTP method GET is not supported by this URL--------------------------------------------------------------------------------type Status reportmessage HTTP method GET is not supported by this URLdescription The specified HTTP method is not allowed for the requested resource (HTTP method GET is not supported by this URL).
--------------------------------------------------------------------------------Apache Tomcat/6.0.20 Google上说是提交方式不对要用POST 但是我就是用的POST 在servlet里面我也用的是doPost方法 这是我的WEB.XML<?xml version="1.0" encoding="UTF-8"?>
<web-app 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">
  <servlet>
   <servlet-name>servlet</servlet-name>
   <servlet-class>servlet.ServletSelect</servlet-class>
  </servlet>
  <servlet-mapping>
   <servlet-name>servlet</servlet-name>
   <url-pattern>/*</url-pattern>
  </servlet-mapping>
  <welcome-file-list>
    <welcome-file>index.jsp</welcome-file>
  </welcome-file-list>
</web-app>等待高手解答