Newest 'spring-boot' Questions
-1 votes
0 answers
26 views
Enable logger under base path for management endpoints
Im using spring boot 3.5.x, and have configured the following: management.endpoints.web.exposure.include=info,health,metrics,loggers management.endpoints.web.base-path=/ and my security config: ....
0 votes
1 replies
38 views
Spring @Transactional EgorX_x
I have a Spring service class with two methods, both annotated with @Transactional. When I call the second method from the first one internally (within the same bean), the transaction of the second ...
0 votes
1 replies
70 views
Spring Boot Docker Compose on Multi-Module project
I have a monorepo with 7 subprojects(modules), where 6 of these are a Spring Boot application. I am also using Spring Boot Docker Compose dependency <modules> <module>common</module&...
0 votes
2 replies
108 views
Which field to choose for future
I'm a 3rd year software engineering student, I have 2 main subjects that is AI(ML, NLP, Python, Libraries) and the other one is Software Construction and Development in java(Swing, Spring boot etc), ...
2 votes
1 replies
71 views
what's the best way to audit oldValues in spring boot?
I am working on a project where I have to audit some fields, I was going to use hibernate envers, but since it doesn't extend to custom logic, I am now in between using AOP to intercept methods with a ...
0 votes
2 replies
73 views
How to test the stackoverflow api
I wrote a spring boot application and a tg bot to track updates in stackoverflow topics and various changes in github repositories. To do this, I use the api of these services, I ask a question to ...