-
Notifications
You must be signed in to change notification settings - Fork 38.7k
Closed as not planned
Labels
in: webIssues in web modules (web, webmvc, webflux, websocket)Issues in web modules (web, webmvc, webflux, websocket)status: invalidAn issue that we don't feel is validAn issue that we don't feel is valid
Description
I found that when using Spring Boot 3.4.1, this version places the properties from the header into the request when handling web requests.
There is a property bu in the header of request.
code:
@GetMapping("/periodic-data")
fun periodicData(condition: MarketingBoardDataDtoV2) = marketingBoardV2Service.periodicData(condition)
data class MarketingBoardDataDtoV2(
val category: String?,
val subBrand: String?,
val bu: String?,
val startDate: LocalDate,
val endDate: LocalDate,
)
request:
GET {{host}}/v2/marketing-board/periodic-data?startDate=2024-08-14&endDate=2024-12-14
Metadata
Metadata
Assignees
Labels
in: webIssues in web modules (web, webmvc, webflux, websocket)Issues in web modules (web, webmvc, webflux, websocket)status: invalidAn issue that we don't feel is validAn issue that we don't feel is valid