上一页 1 2 3 4 5 6 7 8 9 10 ··· 13 下一页
摘要: https://stackoverflow.com/questions/1906445/what-is-the-difference-between-jdk-and-jre JRE: Java Runtime Environment. It is basically the Java Virtual 阅读全文
posted @ 2018-04-28 06:55 爆炸的果核 阅读(80) 评论(0) 推荐(0)
摘要: HashMap类 https://docs.oracle.com/javase/8/docs/api/java/util/HashMap.html public class HashMap<K,V> extends AbstractMap<K,V> implements Map<K,V>, Clon 阅读全文
posted @ 2018-04-17 02:45 爆炸的果核 阅读(2126) 评论(0) 推荐(0)
摘要: https://howtodoinjava.com/server/tomcat/a-birds-eye-view-on-how-web-servers-work/ 阅读全文
posted @ 2018-04-15 16:40 爆炸的果核 阅读(95) 评论(0) 推荐(0)
摘要: HttpSession接口 public interface HttpSession (https://docs.oracle.com/javaee/7/api/javax/servlet/http/HttpSession.html) 一、介绍 HttpSession接口提供了一种方式,使得用户在多 阅读全文
posted @ 2018-04-15 06:02 爆炸的果核 阅读(2382) 评论(0) 推荐(0)
摘要: package javax.servlet.http (https://docs.oracle.com/javaee/7/api/javax/servlet/http/package-summary.html) 一、public interface HttpServletRequest extend 阅读全文
posted @ 2018-04-15 05:47 爆炸的果核 阅读(274) 评论(0) 推荐(0)
摘要: HttpRequest抽象类 public abstract class HttpServlet extends GenericServlet 实现的接口有:Serializable, Servlet, ServletConfig 一、介绍 提供一个抽象类,以便于子类创建适用于Web站点的HTTP 阅读全文
posted @ 2018-04-15 05:20 爆炸的果核 阅读(327) 评论(0) 推荐(0)
摘要: ServletResponse接口 public interface ServletResponse 子接口:HttpServletResponse 实现类:HttpServletResponseWrapper, ServletResponseWrapper (https://docs.oracle 阅读全文
posted @ 2018-04-15 04:42 爆炸的果核 阅读(152) 评论(0) 推荐(0)
摘要: ServletRequest接口 public interface ServletRequest 子接口:HttpServletRequest 实现类:HttpServletRequestWrapper, ServletRequestWrapper (https://docs.oracle.com/ 阅读全文
posted @ 2018-04-15 04:34 爆炸的果核 阅读(296) 评论(0) 推荐(0)
摘要: ServletContainerInitializer接口 public interface ServletContainerInitializer 一、介绍 该接口,允许在 web 应用程序的启动阶段通知Library/Runtime, 并执行对Servlets、Filters和Listeners 阅读全文
posted @ 2018-04-15 04:10 爆炸的果核 阅读(792) 评论(0) 推荐(0)
摘要: RequestDispatcher接口 public interface RequestDispatcher 一、介绍 定义一个对象,从客户端接收请求并将其发送到服务器上的任何资源(例如servlet,HTML文件或JSP文件)。 servlet容器创建RequestDispatcher对象,该对象 阅读全文
posted @ 2018-04-15 03:43 爆炸的果核 阅读(804) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 9 10 ··· 13 下一页