自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

井底之蛙

学而知不足,思而得远虑

  • 博客(9)
  • 资源 (5)
  • 问答 (4)
  • 收藏
  • 关注

原创 eclipse 设置maven来自动下载源码与doc

通常我们通过maven来使用各种库文件,想要真正了解别人的类实现方法,需要查看别人的源码,maven给我们提供了这个便利,它不仅可以下载各种库文件,还会下载对应的源码和doc文档。一、在工具栏找到Window->Perferences.二、找到Maven选择,选择同时下载source和doc,如下图

2015-10-29 17:30:51 14966 11

原创 Java-HttpSession

//session给用户一种标志,让用户可以在不同页面以及网站中都有一个特殊的标记public interface HttpSession { /** * Returns the time when this session was created, measured * in milliseconds since midnight January 1, 1970 G

2015-10-24 17:05:57 873

原创 Java-HttpServletRequest

//继承了ServletRequest接口,给servlet提供Request请求信息,servlet 容器会创建以后HttpServletRequest对象//并把它作为一个参数给service函数public interface HttpServletRequest extends ServletRequest { /** * String identifier for

2015-10-24 15:54:12 1364

原创 Java-HttpServlet

/** * * Provides an abstract class to be subclassed to create * an HTTP servlet suitable for a Web site. A subclass of * HttpServlet must override at least * one method, usually one of these: *

2015-10-24 15:24:46 1256

原创 Java-ServletContextListener

/** * Implementations of this interface receive notifications about * changes to the servlet context of the web application they are * part of. * To receive notification events, the implement

2015-10-23 19:58:44 993

原创 Java-ServletContext

//定义了一系列servlet用来与servlet 容器交流的方法public interface ServletContext { /** * Returns a ServletContext object that * corresponds to a specified URL on the server. * This method allows

2015-10-23 19:37:37 804

原创 Java-Servlet

public interface Servlet { /** * Called by the servlet container to indicate to a servlet that the * servlet is being placed into service. * The servlet container calls the init

2015-10-23 18:06:34 830

原创 Java-Filter-FilterChain-FilterConfig源码

public interface Filter { /** * Called by the web container to indicate to a filter that it is being placed into * service. The servlet container calls the init method exactly once after instanti

2015-10-17 15:11:04 1704 2

原创 Java-Cookie源码

public class Cookie implements Cloneable { private static final String LSTRING_FILE = "javax.servlet.http.LocalStrings"; private static ResourceBundle lStrings = ResourceBundle.getBundle(LS

2015-10-17 14:30:03 1585

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除