publicvoidrenderJson()throwsIOException{FacesContextfacesContext=FacesContext.getCurrentInstance();ExternalContextexternalContext=facesContext.getExternalContext();externalContext.setResponseContentType("application/json");externalContext.setResponseCharacterEncoding("UTF-8");externalContext.getResponseOutputWriter().write(/* sua string json */);facesContext.responseComplete();}