out, pageContext, config, page, exception built-in objects

out objects

Output data to the client

out.print(String s);
out.println(String s);

Management response buffering

  1. Clear the contents of the buffer
    clear()
  2. Clear the contents of the current buffer
    clearBuffer()
  3. Refresh the stream
    flush()
  4. Current detection is automatically cleared when the buffer is full, or abnormal ran
    isAutoFlush()
  5. Gets the size of the buffer
    getBufferSize()

Other built-in objects

  • response, applicaiton, request a separate presentation in other blog,
  1. Get the session range pageContext objectHere Insert Picture Description

  2. Reads configuration information web.xml config objects

Here Insert Picture Description

  1. Response or request page object

Here Insert Picture Description

  1. Gets the exception of information exception object

Here Insert Picture Description

Published 22 original articles · won praise 0 · Views 146

Guess you like

Origin blog.csdn.net/weixin_42649617/article/details/104864767