getInitParameter("")方法一直会抛出空指针错误,在init(ServletConfig config)方法中开头要调用super.init(config)方法,init方法在GenericServlet.java中重写了,必须要显示调用
2016-04-24
eclipse+tomcat8不需要生成web.xml
直接在servlet类里使用注解
@WebServlet(name="HelloServlet", urlPatterns={"/HelloServlet"})
另外,index.jsp中相对路径和绝对路径中都不需要加servlet
<a href="HelloServlet">相对路径跳转访问HelloServlet...</a><br>
<a href="<%=path %>/HelloServlet">绝对路径跳转访问HelloServlet...</a><br>
直接在servlet类里使用注解
@WebServlet(name="HelloServlet", urlPatterns={"/HelloServlet"})
另外,index.jsp中相对路径和绝对路径中都不需要加servlet
<a href="HelloServlet">相对路径跳转访问HelloServlet...</a><br>
<a href="<%=path %>/HelloServlet">绝对路径跳转访问HelloServlet...</a><br>
2016-04-24