Package org.springframework.mock.web
Class MockJspWriter
java.lang.Object
java.io.Writer
jakarta.servlet.jsp.JspWriter
org.springframework.mock.web.MockJspWriter
- All Implemented Interfaces:
 Closeable,Flushable,Appendable,AutoCloseable
Mock implementation of the 
JspWriter class.
 Only necessary for testing applications when testing custom JSP tags.- Since:
 - 2.5
 - Author:
 - Juergen Hoeller
 
- 
Field Summary
Fields inherited from class jakarta.servlet.jsp.JspWriter
autoFlush, bufferSize, DEFAULT_BUFFER, NO_BUFFER, UNBOUNDED_BUFFER - 
Constructor Summary
ConstructorsConstructorDescriptionMockJspWriter(HttpServletResponse response) Create a MockJspWriter for the given response, using the response's default Writer.MockJspWriter(HttpServletResponse response, Writer targetWriter) Create a MockJspWriter for the given response.MockJspWriter(Writer targetWriter) Create a MockJspWriter for the given plain Writer. - 
Method Summary
Modifier and TypeMethodDescriptionvoidclear()voidvoidclose()voidflush()intprotected PrintWriterLazily initialize the target Writer.voidnewLine()voidprint(boolean value) voidprint(char value) voidprint(char[] value) voidprint(double value) voidprint(float value) voidprint(int value) voidprint(long value) voidvoidvoidprintln()voidprintln(boolean value) voidprintln(char value) voidprintln(char[] value) voidprintln(double value) voidprintln(float value) voidprintln(int value) voidprintln(long value) voidvoidvoidwrite(char[] value, int offset, int length) Methods inherited from class jakarta.servlet.jsp.JspWriter
getBufferSize, isAutoFlush 
- 
Constructor Details
- 
MockJspWriter
Create a MockJspWriter for the given response, using the response's default Writer.- Parameters:
 response- the servlet response to wrap
 - 
MockJspWriter
Create a MockJspWriter for the given plain Writer.- Parameters:
 targetWriter- the target Writer to wrap
 - 
MockJspWriter
Create a MockJspWriter for the given response.- Parameters:
 response- the servlet response to wraptargetWriter- the target Writer to wrap
 
 - 
 - 
Method Details
- 
getTargetWriter
Lazily initialize the target Writer.- Throws:
 IOException
 - 
clear
- Specified by:
 clearin classJspWriter- Throws:
 IOException
 - 
clearBuffer
- Specified by:
 clearBufferin classJspWriter- Throws:
 IOException
 - 
flush
- Specified by:
 flushin interfaceFlushable- Specified by:
 flushin classJspWriter- Throws:
 IOException
 - 
close
- Specified by:
 closein interfaceAutoCloseable- Specified by:
 closein interfaceCloseable- Specified by:
 closein classJspWriter- Throws:
 IOException
 - 
getRemaining
public int getRemaining()- Specified by:
 getRemainingin classJspWriter
 - 
newLine
- Specified by:
 newLinein classJspWriter- Throws:
 IOException
 - 
write
- Specified by:
 writein classWriter- Throws:
 IOException
 - 
print
- Specified by:
 printin classJspWriter- Throws:
 IOException
 - 
print
- Specified by:
 printin classJspWriter- Throws:
 IOException
 - 
print
- Specified by:
 printin classJspWriter- Throws:
 IOException
 - 
print
- Specified by:
 printin classJspWriter- Throws:
 IOException
 - 
print
- Specified by:
 printin classJspWriter- Throws:
 IOException
 - 
print
- Specified by:
 printin classJspWriter- Throws:
 IOException
 - 
print
- Specified by:
 printin classJspWriter- Throws:
 IOException
 - 
print
- Specified by:
 printin classJspWriter- Throws:
 IOException
 - 
print
- Specified by:
 printin classJspWriter- Throws:
 IOException
 - 
println
- Specified by:
 printlnin classJspWriter- Throws:
 IOException
 - 
println
- Specified by:
 printlnin classJspWriter- Throws:
 IOException
 - 
println
- Specified by:
 printlnin classJspWriter- Throws:
 IOException
 - 
println
- Specified by:
 printlnin classJspWriter- Throws:
 IOException
 - 
println
- Specified by:
 printlnin classJspWriter- Throws:
 IOException
 - 
println
- Specified by:
 printlnin classJspWriter- Throws:
 IOException
 - 
println
- Specified by:
 printlnin classJspWriter- Throws:
 IOException
 - 
println
- Specified by:
 printlnin classJspWriter- Throws:
 IOException
 - 
println
- Specified by:
 printlnin classJspWriter- Throws:
 IOException
 - 
println
- Specified by:
 printlnin classJspWriter- Throws:
 IOException
 
 -