Skip to content

Commit

Permalink
[ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
wanglingsong committed Apr 3, 2015
1 parent eb91091 commit 6c8785d
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# JsonSurfer - Let's surf on Json!
![](https://travis-ci.org/jsurfer/JsonSurfer.svg?branch=master)
## Why JsonSurfer
Jsonsurfer is good at processing **big and complicated json** data with three major features.
* Streaming
Expand Down Expand Up @@ -29,9 +28,21 @@ Jsonsurfer is good at processing **big and complicated json** data with three ma
| `.<name>` | child | YES |
| `['<name>' (, '<name>')]` | child/children | YES |
| `[<number> (, <number>)]` | index/indices | YES |
| `[start:end]` | array slice | Yes |
| `[start:end]` | array slice | YES |
| `[?(<expression>)]` | expression | Not yet |

* JsonSurfer is available in cetral maven repository.

![](https://travis-ci.org/jsurfer/JsonSurfer.svg?branch=master)
```xml
<dependency>
<groupId>com.github.jsurfer</groupId>
<artifactId>jsurfer-simple</artifactId>
<version>1.2.1</version>
</dependency>
```


* JsonSurfer relies on third party library for parsing json and has dedicated maven projects built for them. e.g json-simple, gson or jackson
* Pluggable json parser and model provider
```java
Expand Down

0 comments on commit 6c8785d

Please sign in to comment.