3 questions from the last 7 days
2
votes
1
answer
105
views
Spring TransactionTemplate joins the Transaction of unknown origin
'org.springframework.boot' version '3.3.13'
I have a simple Task framework.
public class TaskRunner implements DelayedTaskRunner {
private static final String TASK_WORKER_THREAD_NAME_PATTERN = &...
0
votes
1
answer
90
views
DockerHub: Unable to open JDBC Connection for DDL execution [Could not create connection to database server]
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.
...
3
votes
0
answers
62
views
Problem with @JoinFormula with fixed value
In my Spring Boot 3, Hibernate 6.6.42 project I have the following two entities:
@Getter
@Setter
@Entity
@Table(name = "ATTACHMENT")
public class Attachment implements Serializable {
...