12,034 questions
-2
votes
1
answer
68
views
working with numerous database schemas via the WEB [closed]
I want to write an application on Spring Boot with a web part and a database (Postgres), Spring Data, DataSourceConfiguration, and HikariDataSource.
There will be 10 to 20 users. Each user has their ...
-3
votes
0
answers
62
views
How to customize and create Spring Security JDBC custom tables [closed]
I am working on an auth service and using Spring Boot 4, Spring Security 7 and using a PostgreSQL database to authenticate users using my auth service.
One problem I'm running into is that JDBC ...
0
votes
1
answer
101
views
Passing LocalDate to Between comparison for Cosmos DB
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
28
views
How to apply multi-tenancy pre-filters to all Spring Data Elasticsearch repository queries (including findById and custom @Query)?
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 ...
0
votes
0
answers
23
views
How can I create a "managed type" for a Spring Data 3.4 @NativeQuery interface to access data with?
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 ...
0
votes
1
answer
72
views
Enable Hibernate @Filter as default in Springboot for soft delete
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 ...
0
votes
1
answer
77
views
IDs are mismatched when calling Spring Boot REST API from Next.js client generated using OpenAPI/Swagger
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(...
2
votes
1
answer
173
views
How does Spring JPA “instantiate” the interfaces that extends repositories?
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(...
-1
votes
1
answer
117
views
Spring Data JDBC inserts varchar into Postgres jsonb column even with custom PGobject converter
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 ...
1
vote
1
answer
127
views
@LastModifiedDate is not updated with @ManyToMany relation
In Spring Boot I have an entity:
@Entity
@Table(name = "Product")
@EntityListeners(AuditingEntityListener.class)
public class Product extends BaseEntity {
...
@NotNull
@...
0
votes
1
answer
239
views
Spring Data JDBC - mapping a series of nested one-to-many relationships inside an aggregate
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 ...
0
votes
1
answer
74
views
undefined method error in eclipse in a project correctly building with maven
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 ...
1
vote
0
answers
68
views
Why does findByTypeNotIn in Redis OM Spring generate the same RediSearch query as findByTypeIn?
I’m using Redis OM Spring with a simple repository:
@Document(value = "Marker", indexName = "MarkerIdx")
data class RedisMarker(
//other indexed
@Indexed
...
2
votes
1
answer
70
views
Not able to reset sequence for the primary key of an entity
I'm implementing some tests for REST endpoints that manipulate a database (in test context, I use an H2 database) via spring data JPA, and I would like to have all the tables clean (no data in it, and ...
1
vote
0
answers
68
views
Sharing a common model between a transformer API and persistence layer API
I am working on a Java project where certain XML files are converted to POJOs and then saved to the database in Cassandra. The 2 projects have a common model which are identical in every way. Since ...