Paul Warren
Paul Warren
Hmmm, yeah interesting issue. The search integration aims to return entities that have associated content that match the search terms. That said, I can see how this would be useful....
@lmtoo you are using elasticsearch, correct?
I see. So you have a custom solution for the page numbers part of it then. That makes sense because, to the best of my knowledge, neither elasticsearch or solr...
So, here is where we are at with this one. Spring Content Solr, Elasticsearrch and REST all now support [custom search types](https://paulcwarren.github.io/spring-content/refs/snapshot/1.1.x/rest-index.html#_format_of_the_response_payload) allowing you to define your [own result type](https://paulcwarren.github.io/spring-content/refs/snapshot/1.1.x/elasticsearch-index.html#_search_return_types)...
Hi @kendclark, thanks for raising this issue. Spring Data has a very similar capability as described at Baeldung [here](https://www.baeldung.com/spring-data-jpa-multiple-databases). Usually I would implement the same, or similar, approach assuming that...
I had figured you needed more dynamic behavior. So what you need is much more like setting the multi-tenancy properties in JPA. I also had a google to see if...
Thanks for the feedback. So, are we talking about something like this then? ``` @Entity @Data public class SomeEntity { @Id @GeneratedValue(...) private Long id; @ContentId private String contentId; }...
Hi @kendclark I have made a few commits on 1.1.x branch (Spring Boot 2.3) and I would now like to get your feedback before proceeding further. In brief: - added...
Ping @kendclark . is this still a requirement for you?
Thanks for getting back to me @kendclark . Yes, from what you described above you would need both. ### StoreResolver Having multiple stores typed to the *same* domain object (in...