卖不甜枣 发表于 2023-5-30 19:34:16

geowebCache 切片不同方式的调用

1.curl 方式
curl -v -u admin:geoserver -H "Content-type: application/json" -d "{'seedRequest':{'name':'NR:tdbp','bounds':{'coords':{ 'double':[ '108.79060363769531','34.31073760986328','109.39276885986328','34.73097610473633']}},'srs':{'number':4326},'zoomStart':1,'zoomStop':12,'format':'image\/png','type':'reseed','threadCount':4}}}""http://127.0.0.1:8055/geoserver/gwc/rest/seed/NR:tdbp.json"<br><br><strong>2.postMan http请求<br></strong>https://img2023.cnblogs.com/blog/1163213/202305/1163213-20230530155722760-539009240.png
 3.java 后端调用
public static boolean slice(String layer, int zoomStart, int zoomStop) {<br>    int threadCount = 2;<br>    String res = "";<br>    /*String cmd = "curl-u " + geoUsername + ":" + geoPassword + " -XPOST -H \"Content-type: text/xml\" -d '<seedRequest><name>" + layer +<br>            "</name><srs><number>4326</number></srs><zoomStart>" + zoomStart + "</zoomStart><zoomStop>" + zoomStop + "</zoomStop><format>image/png</format><type>" + layer + "</type><threadCount>" + threadCount + "</threadCount></seedRequest>'\""<br>            + url + "/gwc/rest/seed/" + layer + ".xml\"";*/<br>    String cmd = "curl-u " + geoUsername + ":" + geoPassword + " -XPOST -H \"Content-type: text/xml\" -d '<seedRequest><name>" + layer +<br>            "</name><srs><number>900913</number></srs><zoomStart>" + zoomStart + "</zoomStart><zoomStop>" + zoomStop + "</zoomStop><format>application/vnd.mapbox-vector-tile</format><type>reseed</type><threadCount>" + threadCount + "</threadCount></seedRequest>'\""<br>            + url + "/gwc/rest/seed/" + layer + ".xml\"";<br>    HttpResponse curl = curl(cmd);<br>    StatusLine statusLine = curl.getStatusLine();<br>    return "HTTP/1.1 200 ".equals(statusLine.toString());<br>} 
 
免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!
页: [1]
查看完整版本: geowebCache 切片不同方式的调用