Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

mvc: Dynamic List use case - allow collections/arrays to grow [SPR-4728] #9405

Closed
spring-projects-issues opened this issue Apr 18, 2008 · 0 comments
Assignees
Labels
in: web Issues in web modules (web, webmvc, webflux, websocket) status: duplicate A duplicate of another issue type: enhancement A general enhancement

Comments

@spring-projects-issues
Copy link
Collaborator

spring-projects-issues commented Apr 18, 2008

Dmitry Platonov opened SPR-4728 and commented

There's a popular use case (search forum for 'dynamic list') for implementing dynamic lists on web pages.

The most common approach is to create hacks in controller to initialize collections/arrays command object properties before binding - trim or grow collections/arrays properties to some calculated size. This will allow binder to bind props[0].name, props[1].name request params to command object even if original command.getProps() returns null or empty collection/array.

The approach must be used EACH controller which wants to work with dynamically added fields.

This could be fixed in SINGLE place - in BeanWrapperImpl#getPropertyValue(), which could allow collection/array to grow instead of simply (Array.get(value, Integer.parseInt(key)), list.get(Integer.parseInt(key)))

Or could we somehow override that method?


Affects: 2.5.3

Issue Links:

7 votes, 9 watchers

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
in: web Issues in web modules (web, webmvc, webflux, websocket) status: duplicate A duplicate of another issue type: enhancement A general enhancement
Projects
None yet
Development

No branches or pull requests

2 participants