JAVA-1525: Moved 1 article to security module
This commit is contained in:
parent
0d6e31f969
commit
06ac0b5589
@ -12,3 +12,4 @@ The "REST With Spring" Classes: http://bit.ly/restwithspring
|
||||
- [Guide to Spring 5 WebFlux](https://www.baeldung.com/spring-webflux)
|
||||
- [Introduction to the Functional Web Framework in Spring 5](https://www.baeldung.com/spring-5-functional-web)
|
||||
- [Guide to the AuthenticationManagerResolver in Spring Security](https://www.baeldung.com/spring-security-authenticationmanagerresolver)
|
||||
- [Spring Webflux and CORS](https://www.baeldung.com/spring-webflux-cors)
|
||||
|
@ -6,7 +6,9 @@ import org.springframework.boot.test.context.SpringBootTest;
|
||||
import org.springframework.test.web.reactive.server.WebTestClient;
|
||||
import org.springframework.test.web.reactive.server.WebTestClient.ResponseSpec;
|
||||
|
||||
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
|
||||
import com.baeldung.reactive.cors.annotated.CorsOnAnnotatedElementsApplication;
|
||||
|
||||
@SpringBootTest(classes = CorsOnAnnotatedElementsApplication.class, webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
|
||||
public class CorsOnAnnotatedElementsLiveTest {
|
||||
|
||||
private static final String BASE_URL = "http://localhost:8081";
|
@ -6,7 +6,9 @@ import org.springframework.boot.test.context.SpringBootTest;
|
||||
import org.springframework.test.web.reactive.server.WebTestClient;
|
||||
import org.springframework.test.web.reactive.server.WebTestClient.ResponseSpec;
|
||||
|
||||
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
|
||||
import com.baeldung.reactive.cors.global.CorsGlobalConfigApplication;
|
||||
|
||||
@SpringBootTest(classes = CorsGlobalConfigApplication.class, webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
|
||||
public class CorsOnGlobalConfigLiveTest {
|
||||
|
||||
private static final String BASE_URL = "http://localhost:8082";
|
@ -6,7 +6,9 @@ import org.springframework.boot.test.context.SpringBootTest;
|
||||
import org.springframework.test.web.reactive.server.WebTestClient;
|
||||
import org.springframework.test.web.reactive.server.WebTestClient.ResponseSpec;
|
||||
|
||||
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
|
||||
import com.baeldung.reactive.cors.webfilter.CorsWebFilterApplication;
|
||||
|
||||
@SpringBootTest(classes = CorsWebFilterApplication.class, webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
|
||||
public class CorsOnWebFilterLiveTest {
|
||||
|
||||
private static final String BASE_URL = "http://localhost:8083";
|
Loading…
x
Reference in New Issue
Block a user