As @Aeseir's answer, you need to pay attention to the th:object and th:field
The field can be int, double, String, List and the object should have getter and setter for its field.
In this case
public class Experience{
String field;
List list;
//getter() and setter()
}