当前最新版本:1.2.1.1
<dependency> <groupId>org.xson</groupId> <artifactId>tangyuan-es</artifactId> <version>${tangyuan.version}</version> </dependency>
<post id="search" converter="@hits"> <url>/worksindex/works/_search</url> <body><![CDATA[ { "query" : { "match" : { "title" : #{title} } } } ]]></body> </post> <put id="create" converter="@xco"> <url>/kwindex</url> <body><![CDATA[ { "mappings" : { "kws" : { "properties" : { "val" : { "type": "text", "analyzer": "lc_index", "search_analyzer": "lc_search", "term_vector": "with_positions_offsets" } } } }, "settings" : { "number_of_shards" : 1, "number_of_replicas" : 0 } } ]]></body> </put>