5
Unterschied zwischen / und / * im URL-Muster der Servlet-Zuordnung
Der bekannte Code: <servlet-mapping> <servlet-name>main</servlet-name> <url-pattern>/*</url-pattern> </servlet-mapping> <servlet-mapping> <servlet-name>main</servlet-name> <url-pattern>/</url-pattern> </servlet-mapping> Mein Verständnis ist, dass /*Karten zu http://host:port/context/*. Wie wäre es /? Es wird sicher nicht http://host:port/contextnur root zugeordnet. In der Tat wird es akzeptieren http://host:port/context/hello, aber ablehnen http://host:port/context/hello.jsp. Kann jemand erklären, wie http://host:port/context/helloabgebildet wird?