Obtuve ayuda en la lista de usuarios de GeoServer.
Añadir a este archivo: /tomcat/webapps/geoserver/WEB-INF/web.xml
<context-param>
<param-name>ENABLE_JSONP</param-name>
<param-value>true</param-value>
</context-param>
y reinicie el servicio. Luego, en su solicitud json use format = text / javascript
Aquí está el código que usé para solicitar las características WFS de GeoServer. Estoy usando la API de folleto junto con jquery.
var rootUrl = 'http://tomcat.capecodgis.com/geoserver/capecodgis/ows';
var defaultParameters = {
service: 'WFS',
version: '1.0.0',
request: 'GetFeature',
typeName: 'capecodgis:monitor_station',
maxFeatures: 200,
outputFormat: 'text/javascript',
format_options: 'callback: getJson'
};
var parameters = L.Util.extend(defaultParameters);
$.ajax({
url: rootUrl + L.Util.getParamString(parameters),
dataType: 'jsonp',
jsonpCallback: 'getJson',
success: handleJson
});
function handleJson(data) {
L.geoJson(data, {
onEachFeature: onEachFeature,
pointToLayer: function (feature, latlng) {
return L.circleMarker(latlng, geojsonMarkerOptions);
//return L.marker(latlng);
}
}).addTo(map);
}
Espero que esto te ayude a comenzar y no dudes en pedir más información.