Skip to main content

Question list filters

Filter by
Sorted by
Tagged with
Score of 0
0 answers
22 views

I was trying to use the spring data scrolling feature in my project, but when I do, I am getting a crypting Incorrect result size: expected 1, actual 10 org.springframework.dao....
Best practices
0 votes
0 replies
75 views

I am currently trying to build a Spring Boot autoconfiguration starter for Apache Solr and trying to decide what is the correct behaviour (convention over user friendliness). Essentially it seems to ...
Score of 0
0 answers
54 views

I'm implementing a backfill process to re-enrich old commit data in my application. This involves: Marking old commits as BACKFILL_PENDING For each commit: delete existing enrichment data, then re-...
Score of 0
0 answers
91 views

I have relation set between two classes Nested class: @Column(name = "owner_id", nullable = false) private UUID ownerId; @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "...
Score of 0
1 answer
229 views

I am learning SpringBoot and I'm making an application that need to connect to a Springboot API. I don't have problem when running my API locally, but when I use Docker it fails to find the database. ...
Score of 0
1 answer
122 views

I have Cosmos DB database with the following sample data in the container: { "postedDate": "2025-01-01", ... Other fields } Repository: public interface TransactionRepo ...
Advice
0 votes
0 replies
44 views

I am trying to implement multi-tenancy in a Spring Boot application using Spring Data Elasticsearch. My goal is: Automatically inject a tenantId filter into all Elasticsearch queries This must apply ...
Score of 0
0 answers
32 views

We have a very sparse DAG stored in a MySQL 8 table. I want to get all of the nodes leading into (and out of) a given node. The query can be written without too much trouble with the help of this ...
Score of 0
1 answer
116 views

I defined a Hibernate Filter to filter out the deleted records. My wishlist: The Filter should be enabled all the time as default. Only in special cases when I need the deleted records, then I would ...
Score of 0
1 answer
86 views

I have a Spring Boot Data REST project with the following classes @Entity @Data @Builder @NoArgsConstructor @AllArgsConstructor public class Product { @Id private String sku; @OneToMany(...
Score of 2
1 answer
205 views

I'm delving into Java concepts such as dynamic proxies, reflection, etc. That's why I'm trying to implement some Spring features. Anyway... I created the dynamic proxy: @Override public Object invoke(...
Score of -1
1 answer
257 views

I’m trying to persist a JSON object into a PostgreSQL jsonb column using Spring Data JDBC (not JPA). Even with a custom @WritingConverter that returns a PGobject of type jsonb, PostgreSQL errors out ...
Score of 1
1 answer
155 views

In Spring Boot I have an entity: @Entity @Table(name = "Product") @EntityListeners(AuditingEntityListener.class) public class Product extends BaseEntity { ... @NotNull @...
Score of 0
1 answer
384 views

This is a request for clarification after watching a video about Spring Data JDBC. I have an aggregate made of Book (aggregate root), BookCopy and BookCopyQualityControl. A Book has many BookCopy, and ...
Score of 0
1 answer
83 views

Eclipse gives me the following error: The method delete(Sumti) is undefined for the type SumtiRepository DeleteBridiTest.java The relevant parts of DeleteBridiTest.java: public class DeleteBridiTest ...

15 30 50 per page
1
2 3 4 5
801