Hello,
i have a nested property that i use in the jsp :
<nested:nest property="selectedContrat">
<nested:nest property="iee">
<nested:text property="intaffIee" />
</nested:nest>
</nested:nest>
but the iee can be null, so if i let it null, it return an error
javax.servlet.ServletException: Invalid argument looking up property
selectedContrat.iee.intaffIee of bean saisiAjustContratEditForm
org.apache.jasper.runtime.PageContextImpl.doHandlePageException(PageContextImpl.java:841)
org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:774)
any one has an idea how avoid this, without make a test in the getter , if
null ... else?
Regards
Elyes