Webcam Chat QuickBooks Advice international calling cards international phone cards
JavaBeat Java Books Certifications Certifications Kits Articles Tutorials Tips QNA Book Store Interview Questions SCJP 1.5 SCJP 1.6 SCWCD 5.0 SCBCD 5.0 SCEA SCJA Feeds

What are the ways to register the custom converters in faces context?

Topic :
Feedback Request New QnA Print Email

After creating custom converter class implementing Converter interface it needs to register in the faces context. This can be done in one of the two ways :
  1. Register the converter class with the id. This id is used in <f:convertrer> tag in our view page (For example, JSP).

    <converter>
    <converter-id>ms_Converter</converter-id>
    <converter-class>ms_Converter</converter-class>
    </converter>

    Use this converter in the view page as :

    <h:inputText id="input_text">
    <f:converter converterId="ms_Converter" />
    </h:inputText>

  2. Register the converter class to handle all "Email" objects, for example, automatically.
    <converter> <converter-for-class>Email</converter-for-class> <converter-class>EmailConverter</converter-class>
    </converter>

    If we register the EmailConverter class to handle all Email objects automatically then there is no need to use the <f:converter/> tag in view page. Use this converter as :

    <h:inputText id="phone" value="#{Bean.email}">
    </h:inputText>

Topic :
Feedback Request New QnA Print Email

All api java java 6.0 java 7.0 jdbc jsp servlet ejb jndi jms ejb 3.0 j2ee jee 5.0 jee 6.0 jsf struts spring Hibernate ajax JBoss Seam netbeans eclipse ant xml maven dojo junit javafx j2me log4j ESB JBoss Apache Quartz scjp mysql oracle gwt openjpa jmx yui google-guice android JBoss scwcd 5.0 scjp 1.5 scjp 1.6 scja scbcd 5.0

JavaBeat Website (2004-2011), India
javabeat | advertise | about us | contact | useful resources
Copyright (2004 - 2011), JavaBeat


Technology Blogs
Technology blogs Technology Blogs
blog log