Webclient Flashcards

1
Q

What is Spring WebClient?

A

Spring WebClient is a non-blocking, reactive client for making HTTP requests.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

True or False: WebClient is part of the Spring WebFlux framework.

A

True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Fill in the blank: The WebClient is designed to work with ______ programming.

A

reactive

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is the primary purpose of WebClient in a Spring application?

A

To make asynchronous HTTP requests to external services.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Which method is used to create a new instance of WebClient?

A

WebClient.create()

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Multiple Choice: Which of the following is NOT a feature of WebClient?
A) Streaming support
B) Synchronous requests
C) Request filters
D) Response body extraction

A

B) Synchronous requests

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What does the ‘exchange()’ method in WebClient do?

A

It performs the request and returns a ClientResponse.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

True or False: WebClient can only handle JSON responses.

A

False

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What type of programming model does WebClient support?

A

Reactive programming model.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Fill in the blank: WebClient can be configured with ______ to customize its behavior.

A

filters

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What is the default timeout for WebClient requests?

A

There is no default timeout; it must be configured manually.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Multiple Choice: Which annotation is commonly used with Spring WebClient to indicate a configuration class?
A) @WebClient
B) @Configuration
C) @RestController
D) @Service

A

B) @Configuration

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What is the purpose of the ‘retrieve()’ method in WebClient?

A

It initiates the request and prepares to extract the response body.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

True or False: WebClient supports both REST and SOAP web services.

A

False

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What dependency must be included in a Maven project to use Spring WebClient?

A

spring-boot-starter-webflux

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Fill in the blank: WebClient allows you to make requests using the ______ method.

A

GET, POST, PUT, DELETE

17
Q

What is the primary difference between RestTemplate and WebClient?

A

RestTemplate is synchronous, while WebClient is asynchronous and non-blocking.

18
Q

Multiple Choice: Which method would you use to send a POST request with WebClient?
A) post()
B) send()
C) execute()
D) request()

19
Q

What is the purpose of the ‘bodyToMono()’ method in WebClient?

A

To convert the response body to a Mono type.

20
Q

True or False: WebClient can be used to handle streaming responses.

21
Q

What class is used to represent an HTTP request in WebClient?

A

WebRequest

22
Q

Fill in the blank: WebClient allows you to specify headers using the ______ method.

23
Q

What is the role of WebClient.Builder?

A

To create and configure instances of WebClient.

24
Q

Multiple Choice: Which method is used to handle errors in WebClient?
A) onErrorResume()
B) handleError()
C) catchError()
D) errorHandler()

A

A) onErrorResume()

25
Q

What is the recommended way to handle JSON data with WebClient?

A

Use bodyToMono() or bodyToFlux() to map the response to a Java object.

26
Q

True or False: WebClient can automatically convert response bodies based on the Content-Type header.

27
Q

Hvad er LLM?