Spring Webflow - deleting an item from a list?
问题 I'm using Webflow 2.3.2 in an application, and on one step the user can add/delete from a list in the bound model object (they simply return to the current step after the modification). For example my object might look like this: public class MyInfo implements Serializable { List<String> myList = new ArrayList<String>(); } Doing the "add" in webflow is no problem because I simply stick the new object on the end of the list, but for the "delete" I need to identify the element to delete. What I