Details
-
Sub-task
-
Status: Resolved
-
Minor
-
Resolution: Fixed
-
None
-
None
Description
One of the problems from category: http://www.mail-archive.com/dev@myfaces.apache.org/msg50721.html
Situation: if user creates (mostly by mistake) two converters for same type:
@FacesConverter(forClass=AEntity.class)
public class ConverterOne {}
@FacesConverter(forClass=AEntity.class)
public class ConverterTwo {}
myfaces don't say nothing, moreover random behaviour occurs, because HashMap<String,Converter> and together with classloading in ConverterOne or ConverterTwo is used randomly.
This obviously can afftect @FacesValidator etc.