Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there any standard JSF converter from inputText to URL?

Tags:

java

jsf

I'm trying to convert inputText to java.net.URL in JSF page:

...
<h:form>
  <h:inputText value="${myBean.url}" />
  <h:commandButton type="submit" value="go" />
</h:form>
...

My backed bean is:

import java.net.URL;
@ManagedBean public class MyBean {
  public URL url;
}

Should I implement the converter from scratch or there is some other way?

like image 897
yegor256 Avatar asked Aug 05 '10 14:08

yegor256


1 Answers

Yes, you need to implement a Converter. It's not that hard for this particular case:

@FacesConverter(forClass=URL.class)
public class URLConverter implements Converter {

    @Override
    public Object getAsObject(FacesContext context, UIComponent component, String value) {
        if (value == null) {
            return null;
        }

        try {
            return new URL(value);
        }
        catch (MalformedURLException e) {
            throw new ConverterException(new FacesMessage(String.format("Cannot convert %s to URL", value)), e);
        }
    }

    @Override
    public String getAsString(FacesContext context, UIComponent component, Object value) {
        if (value == null) {
            return "";
        }

        return value.toString();
    }

}

Put it somewhere in your project. Thanks to the @FacesConverter it'll register itself automagically.

like image 66
BalusC Avatar answered Sep 28 '22 05:09

BalusC