Ich habe einen jsonurl
, die ich lesen will, und es sieht wie folgt aus:Wie schreibe ich eine benutzerdefinierte Zuführung für Gatling Json?
> {
> "elements": [
> {
> "box": {
> "x": 0,
> "y": 0,
> "width": 186,
> "height": 10.526316
> },
> "type": "Header"
> },
> {
> "box": {
> "x": 0,
> "y": 0,
> "width": 0,
> "height": 0
> },
> "type": "Regular"
> },
> {
> "box": {
> "x": 0,
> "y": 14.035088,
> "width": 43.333332,
> "height": 3.508772
> },
> "type": "Regular"
> },
> {
> "box": {
> "x": 95.08772,
> "y": 14.035088,
> "width": 90.87719,
> "height": 45.614037
> },
> "type": "Image"
> },
> {
> "box": {
> "x": 95.08772,
> "y": 63.157894,
> "width": 90.87719,
> "height": 3.508772
> },
> "type": "Regular"
> },
> {
> "box": {
> "x": 95.08772,
> "y": 63.157894,
> "width": 90.87719,
> "height": 3.508772
> },
> "type": "Regular"
> },
> {
> "box": {
> "x": 47.54386,
> "y": 42.105263,
> "width": 43.333332,
> "height": 5.9649124
> },
> "type": "Regular"
> },
> {
> "box": {
> "x": 0,
> "y": 0,
> "width": 43.333332,
> "height": 98.24561
> },
> "type": "Regular"
> },
> {
> "box": {
> "x": 47.54386,
> "y": 0,
> "width": 43.333332,
> "height": 98.24561
> },
> "type": "Regular"
> },
> {
> "box": {
> "x": 95.08772,
> "y": 0,
> "width": 43.333332,
> "height": 98.24561
> },
> "type": "Regular"
> },
> {
> "box": {
> "x": 142.63158,
> "y": 0,
> "width": 43.333332,
> "height": 98.24561
> },
> "type": "Regular"
> }
> ],
> "points": [
> {
> "x": 190,
> "y": 22.192982
> },
> {
> "x": 376,
> "y": 22.192982
> },
> {
> "x": 376,
> "y": 120.4386
> },
> {
> "x": 190,
> "y": 120.4386
> }
> ],
> "state": "UNUSED",
> "contentPath": "/content/ffx/print-authoring/en/newsholes/FNZ/DPT/2016/05/30/test_pages/q001/newshole-63019301",
> "assetId": null },
ich die "state"
und "contentPath"
und ordnet sie dann lesen möchten. zur Zeit verwende ich eine statische Quelle wie:
val nhfeeder = jsonFile ("Formen-data.json")
als verwenden,
.feed (nhfeeder)
das ist eine statische Quelle, also möchte ich einen benutzerdefinierten Zubringer, der direkt von der jsonurl
lesen kann und das Notwendige tun .
Dies ist keine sehr nützliche Antwort und auch generische und neben dem Punkt – VeRo