feliperazeek / playframework-elasticsearch

Integrate Elastic Search in a Play! Framework Application. This module uses JPA events to notify Elastic Search of events of their own. It embeds a running Elastic Search instance for Rapid Development.
http://geeks.aretotally.in/play-framework-module-elastic-search-distributed-searching-with-json-http-rest-or-java
84 stars 43 forks source link

elasticsearch.local=true does not work #1

Closed vbuzzano closed 13 years ago

vbuzzano commented 13 years ago

I set elasticsearch.local to true elasticsearch.local = true

and i get the error: Configuration required - elasticsearch.client when local model is disabled!

In ElasticSearchPlugin.java at line 54, you use: Boolean.getBoolean(Play.configuration.getProperty("elasticsearch.local").trim());

you should use: Bolean.valueOf(Play.configuration.getProperty("elasticsearch.local").trim());

feliperazeek commented 13 years ago

Release 0.0.4 with Bug Fixes

Doc: https://github.com/feliperazeek/playframework-elasticsearch Sample App: https://github.com/mashup-fm/playframework-elasticsearch-basicdemo Step by Step Tutorial: http://geeks.aretotally.in/seven-steps-to-crud-with-play-framework-and-elastic-search-with-new-release-0-0-4

Thank you so much my friend! Felipe