20
Jak uniknąć wyjątku „Okrągła ścieżka widoku” w teście Spring MVC
Mam następujący kod w jednym z moich kontrolerów: @Controller @RequestMapping("/preference") public class PreferenceController { @RequestMapping(method = RequestMethod.GET, produces = "text/html") public String preference() { return "preference"; } } Po prostu próbuję to przetestować za pomocą testu Spring MVC w następujący sposób: @ContextConfiguration @WebAppConfiguration @RunWith(SpringJUnit4ClassRunner.class) public class PreferenceControllerTest { @Autowired private …