We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In sample/app/indexing/Team.java the index type is being set like this:
sample/app/indexing/Team.java
@IndexType(name = "team")
How can this be set to several or all types? I tried
@IndexType(name = "teama,teamb,teamc") for several types @IndexType(name = "*") for all types
@IndexType(name = "teama,teamb,teamc")
@IndexType(name = "*")
When leaving @IndexType out and just setting @IndexName I get a NullPointerException.
@IndexType
@IndexName
The text was updated successfully, but these errors were encountered:
I was just discussing the same issue with @eduardofcbg who is also developing a Play2/ES module which works with the current Play 2.4.1 version at https://github.com/eduardofcbg/playframework2-elasticsearch
There is no need to enhance the @IndexType here and the issue can be closed.
Sorry, something went wrong.
No branches or pull requests
In
sample/app/indexing/Team.java
the index type is being set like this:@IndexType(name = "team")
How can this be set to several or all types? I tried
@IndexType(name = "teama,teamb,teamc")
for several types@IndexType(name = "*")
for all typesWhen leaving
@IndexType
out and just setting@IndexName
I get a NullPointerException.The text was updated successfully, but these errors were encountered: