This JSP includes itself recursively:
1. ${node.title}
2. <div class="children">
3. <c:foreach var="node" items="${node.children}">
4. <c:set var="node" value="${node}"...
Type: Posts; User: Ilya Boyandin; Keyword(s):
This JSP includes itself recursively:
1. ${node.title}
2. <div class="children">
3. <c:foreach var="node" items="${node.children}">
4. <c:set var="node" value="${node}"...
Hello all!
I see in the log file that the AspectJ weaver is initialized four times. It seems that there are four different classloaders (I don't know why either) and it's initialized for each...
Yes, another solution is to create a form object which has fields for both types of addresses and can then produce an address object of the proper type (after form submit when all the field values...
Hello all,
There is a form in which users can enter/change their addresses. There are two kinds of addresses: local and foreign. A user can change a local address so that it becomes a foreign one,...