JavaWeb项目Servlet无法访问问题解决
人气:1这篇文章主要介绍了JavaWeb项目Servlet无法访问问题解决,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下
1.创建Servlet
2.在jsp中用ajax调用
$.post("<%=request.getContextPath()%>/AjaxValidationServlet",{"userName":userName},function(message){ alert(message); });
这是异步验证用户是否存在。
问题:报404,提示没有这个servlet。
解决:
1.在web.xml中引用的xsi:若是3.0.xsd之后,的有注解可以解决
@WebServlet(name = "AjaxValidationServlet",urlPatterns = "/AjaxValidationServlet")
2.在3.0之前的需要在web.xml中配置servlet名和映射
<servlet> <servlet-name>AjaxValidationServlet</servlet-name> <servlet-class>com.web.AjaxValidationServlet</servlet-class> </servlet> <servlet-mapping> <servlet-name>AjaxValidationServlet</servlet-name> <url-pattern>/AjaxValidationServlet</url-pattern> </servlet-mapping>
这样就可以正常访问了。
您可能感兴趣的文章:
加载全部内容