Thibault Meyer

Results 35 comments of Thibault Meyer

Using `--jdkhome` parameter works ! VisualVM start with success

To use DocStore, You have to put these lines on `conf/ebean.properties`. The file `application.conf` is only used to configure datasource and model location (for enhancement and register classes with Ebean...

I see, it make sense, something like that (see below) could be a good approach to handle configuration of all Ebean functionalities. **application.conf** ``` ebean { servers { default {...

...of course it doesn't work. It's an example of what play-ebean configuration could looks like in the future. I just said _"could be a good approach to handle configuration of...

I can propose a PR this weekend or next weekend... I don't promise all configuration keys will be implemented, but the _docstore_ related keys should working.

@cpoissonnier I have rewritted so many files, not sure it will be merged in this project. So we are published our version under our organization. in your `project/plugins.sbt` file, you...

@ethereal-sandeep have you upgraded your `application.conf` file ? If you have in develop mode, think to restart server after editing `project/plugins.sbt`. ``` # Ebean # ~~~~~ ebean { servers {...

Your keys are not corrects. According to my example, "flat keys" follows this pattern `ebean.servers..docstore.`. By example: ``` ebean.servers.default.enhancement=["models.*"] #Must be a LIST ebean.servers.default.docstore.url="http://127.0.0.1:9200" ebean.servers.default.docstore.active=true ebean.servers.default.docstore.generateMapping=false ebean.servers.default.docstore.dropCreate=false ebean.servers.default.docstore.create=false ```

Actually, `addSbtPlugin("com.payintech" % "sbt-play-ebean" % "16.12")` use Ebean 9.3.1 and EbeanAgent 8.2.1. If Ebean 9.3.1 is not suitable for you, as mentioned on the [README.md](https://github.com/payintech/play-ebean/blob/master/README.md), you can override Ebean version...

@ethereal-sandeep I think you don't use our plugin, cause you have an error on the file `EbeanParsedConfig.java` who has been removed since the version _16.12_. Are you sure `addSbtPlugin("com.payintech" %...