@SpringBootTest, @WebMvcTest 차이
@SpringBootTest is the general test annotation. If you're looking for something that does the same thing prior to 1.4, that's the one you should use. It does not use slicing at all which means it'll start your full application context and not customize component scanning at all.@WebMvcTest is only going to scan the controller you've defined and the MVC infrastructure. That's it. So if your contr..