spring-framework icon indicating copy to clipboard operation
spring-framework copied to clipboard

Add @ModelAttribute support for HTTP interface clients

Open hermannpencole opened this issue 1 month ago • 0 comments

Add @ModelAttribute support for HTTP interface clients

  • Introduces ModelAttributeArgumentResolver for HttpServiceProxyFactory.
  • Expands @ModelAttribute DTO properties into request parameters (query string).
  • Supports @BindParam on fields to rename parameter keys.

Usage

  • Declare @ModelAttribute on an interface method parameter:
    • @GetExchange("/search") String search(@ModelAttribute SearchCriteria criteria);
    • Produces: /search?q=...&page=...&size=...

hermannpencole avatar Oct 16 '25 09:10 hermannpencole