Has anyone ever used a JSF converter in code that wasn't specifically related to JSF? The reason why I am asking is that we are migrating an application to JSF and a portion of the pages are in JSF but a portion are still in Struts.
Two possible ideas come to mind: 1.) Use the converter's getAsString method inside of a static utility method 2.) Move the logic from the getAsString method to a static utility method. I suppose approach #2 is less of a hack since you avoid FacesContext and other JSF specific stuff in your static helper. Any other thoughts or approaches? TIA, sean

