0
, 나는 다음과 같은 예외로 실행중인
org.springframework.web.util.NestedServletException:
Request processing failed; nested exception is
org.springframework.beans.InvalidPropertyException:
Invalid property 'listOfSomething[0]' of bean class ...
이 난처하기 전에 괜찮 았는데 ,하지만 나중에 휴식.
public class FormToSubmit {
private List<MyType> listOfSomething;
public List<MyType> getListOfSomething() {
return listOfSomething;
}
public void setListOfSomething(List<MyType> listOfSomething) {
this.listOfSomething = listOfSomething;
}
}
이미 다음 난독 라인 중 난독 동안 모든 공용 속성 접근을 유지하고있어 :
-keep public class com.package.name.model.** { *; }