我为实践写了一个简单的网页,向用户显示一个下拉菜单。用户将选择一个号码并点击Submit
按钮。
之后,servlet将被执行并将发回一个偶数列表。
查看网络浏览器地址栏中的地址,它是:
http://localhost:8080/FindEvenOdd/FindEvenOdd
我希望它是 http://localhost:8080/FindEvenOdd/Result
我该怎么做?
我的DD看起来像这样:
<web-app 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
web-app_2_4.xsd"
version="2.4">
<servlet>
<servlet-name>Evens</servlet-name>
<servlet-class>FindIt</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>Evens</servlet-name>
<url-pattern>/FindEvenOdd</url-pattern>
</servlet-mapping>
</web-app>
我的HTML:
<html>
<head>
<title> List of Even/Odd Numbers </title>
</head>
<body>
<form method="POST" action="FindEvenOdd">
<center>
<select name="number" size="1">
<option> <50
<option> <100
<option> <150
</select>
</center>
<center>
<input type="SUBMIT">
</center>
</form>
</body>
</html>
action="FindEvenOdd"
更改为action="Result"
<url-pattern>
更改为结果http://localhost:8080/FindEvenOdd/Result
答案 0 :(得分:2)
你尝试的几乎是正确的。 url-pattern
必须设置为/Result
。
但有些注意事项:
center
是一个不应该长时间使用的标记,而您的选择框是无效的HTML。答案 1 :(得分:2)
将网址格式更改为/FindEvenOdd/Result
并尝试
答案 2 :(得分:0)
要更改URL,您需要在servlet中进行重定向。
String contextPath = request.getContextPath();
response.sendRedirect(response.encodeRedirectURL(contextPath + "/Result") );