Details
-
Type:
Bug
-
Status:
Resolved
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: 1.3.2
-
Labels:None
-
Number of attachments :
Description
The current workaround using a MappedNamespaceConvention subclass:
public String createKey(String prefix, String ns, String local) {
try
catch (IllegalStateException ise) {
StringBuilder builder = new StringBuilder();
if (prefix != null && prefix.length() != 0)
return builder.append(local).toString();
}
}