Denetleyicilerimden birinde aşağıdaki kod var:
@Controller
@RequestMapping("/preference")
public class PreferenceController {
@RequestMapping(method = RequestMethod.GET, produces = "text/html")
public String preference() {
return "preference";
}
}
Spring MVC testini kullanarak aşağıdaki gibi test etmeye çalışıyorum :
@ContextConfiguration
@WebAppConfiguration
@RunWith(SpringJUnit4ClassRunner.class)
public class PreferenceControllerTest {
@Autowired
private WebApplicationContext ctx;
private MockMvc mockMvc;
@Before
public void setup() {
mockMvc = webAppContextSetup(ctx).build();
}
@Test
public void circularViewPathIssue() throws Exception {
mockMvc.perform(get("/preference"))
.andDo(print());
}
}
Aşağıdaki istisnayı alıyorum:
Dairesel görünüm yolu [tercih]: tekrar geçerli işleyici URL'sine [/ tercih] gönderilir. ViewResolver kurulumunuzu kontrol edin! (İpucu: Bu, varsayılan görünüm adı oluşturma nedeniyle belirtilmemiş bir görünümün sonucu olabilir.)
Garip bulduğum şey , şablonu içeren "tam" bağlam yapılandırmasını yüklediğimde ve aşağıda gösterildiği gibi çözümleyicileri görüntülediğimde sorunsuz çalışması :
<bean class="org.thymeleaf.templateresolver.ServletContextTemplateResolver" id="webTemplateResolver">
<property name="prefix" value="WEB-INF/web-templates/" />
<property name="suffix" value=".html" />
<property name="templateMode" value="HTML5" />
<property name="characterEncoding" value="UTF-8" />
<property name="order" value="2" />
<property name="cacheable" value="false" />
</bean>
Şablon çözümleyici tarafından eklenen ön ekin, uygulama bu şablon çözümleyiciyi kullandığında "dairesel görünüm yolu" olmamasını sağladığının farkındayım.
Peki uygulamamı Spring MVC testini kullanarak nasıl test edeceğim?
@RestController
yerine kullanın@Controller
ViewResolver
Başarısız olduğunda kullandığınızı gönderebilir misiniz?