20 lines
		
	
	
		
			689 B
		
	
	
	
		
			Plaintext
		
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			689 B
		
	
	
	
		
			Plaintext
		
	
	
	
== SecurityMockMvcRequestBuilders
 | 
						|
 | 
						|
Spring MVC Test also provides a `RequestBuilder` interface that can be used to create the `MockHttpServletRequest` used in your test.
 | 
						|
Spring Security provides a few `RequestBuilder` implementations that can be used to make testing easier.
 | 
						|
In order to use Spring Security's `RequestBuilder` implementations ensure the following static import is used:
 | 
						|
 | 
						|
====
 | 
						|
.Java
 | 
						|
[source,java,role="primary"]
 | 
						|
----
 | 
						|
import static org.springframework.security.test.web.servlet.request.SecurityMockMvcRequestBuilders.*;
 | 
						|
----
 | 
						|
 | 
						|
.Kotlin
 | 
						|
[source,kotlin,role="secondary"]
 | 
						|
----
 | 
						|
import org.springframework.security.test.web.servlet.request.SecurityMockMvcRequestBuilders.*
 | 
						|
----
 | 
						|
====
 |