Spring Boot Microservices JUnit Test Security Issue
As I still couldn't solve it, I asked a question in stackoverflow. Here is the link : https://stackoverflow.com/questions/74633891/spring-boot-microservice-servicetest-and-controllertest-for-junit-throwing-jav
I also found some links but they didn't help me fix my issue.
https://github.com/spring-projects/spring-framework/issues/29215
https://stackoverflow.com/questions/73929257/springboottest-annotation-resulting-in-stackoverflowerror
I hope you can help me.
I also found some links but they didn't help me fix my issue.
https://github.com/spring-projects/spring-framework/issues/29215
https://stackoverflow.com/questions/73929257/springboottest-annotation-resulting-in-stackoverflowerror
I hope you can help me.
Stack Overflow
I have a problem in running any test method in service test and controller test in one of the spring boot microservices (order service).
After I completed service and controller , I tried to write ...
After I completed service and controller , I tried to write ...
GitHub
Security configuration class @Configuration @EnableGlobalMethodSecurity(prePostEnabled = true) public class SecurityConf { @Bean public AuthenticationManager authenticationManagerBean(Authenticatio...
Stack Overflow
I would like to test some services in my application, but when I use @SpringBootTest annotation, they result in StackOverflowError. To start with, I am using JUnit5 and I tried to create some basic...