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 ...
Security configuration class @Configuration @EnableGlobalMethodSecurity(prePostEnabled = true) public class SecurityConf { @Bean public AuthenticationManager authenticationManagerBean(Authenticatio...
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...