[SPRING] java.lang.AssertionError : junit Spring MVC Controller 동안 컨텐츠 유형이 설정되지 않았습니까?
SPRINGjava.lang.AssertionError : junit Spring MVC Controller 동안 컨텐츠 유형이 설정되지 않았습니까?
JUnit을 사용하여 Spring MVC 컨트롤러를 테스트하고있다. 아래는 index.jsp 페이지를 반환하고 화면에 Hello World를 보여주는 내 메소드입니다.
@RequestMapping(value = "index", method = RequestMethod.GET)
public HashMap<String, String> handleRequest() {
HashMap<String, String> model = new HashMap<String, String>();
String name = "Hello World";
model.put("greeting", name);
return model;
}
그리고 위의 방법에 대한 JUnit 테스트가 아래에 있습니다.
public class ControllerTest {
private MockMvc mockMvc;
@Before
public void setup() throws Exception {
InternalResourceViewResolver viewResolver = new InternalResourceViewResolver();
viewResolver.setPrefix("/WEB-INF/views/");
viewResolver.setSuffix(".jsp");
this.mockMvc = standaloneSetup(new Controller()).setViewResolvers(viewResolver).build();
}
@Test
public void test01_Index() throws Exception {
mockMvc.perform(get("/index")).andExpect(status().isOk()).andExpect(content().contentType("application/json"))
.andExpect(jsonPath("$.greeting").value("Hello World"));
}
}
위의 junit은 디버깅 할 때 정상적으로 작동하지만 junit을 실행할 때 junit을 실행하면이 오류가 발생합니다.
MockMvc : Circular view path [view]: would dispatch back to the current handler URL [/view] again
그래서 내가이 튜토리얼을 따라 갔다는 것을 고치고 난 후에 나는이 예외를 얻고있다.
java.lang.AssertionError: Content type not set
at org.springframework.test.util.AssertionErrors.fail(AssertionErrors.java:39)
at org.springframework.test.util.AssertionErrors.assertTrue(AssertionErrors.java:72)
at org.springframework.test.web.servlet.result.ContentResultMatchers$1.match(ContentResultMatchers.java:75)
at org.springframework.test.web.servlet.MockMvc$1.andExpect(MockMvc.java:141)
at com.ebay.personalization.bullseye.zookeeper.test.ZookeeperControllerTest.test01_Index(ZookeeperControllerTest.java:32)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:76)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:602)
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:44)
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:15)
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:41)
at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:20)
at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:28)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:76)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:50)
at org.junit.runners.ParentRunner$3.run(ParentRunner.java:193)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:52)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:191)
at org.junit.runners.ParentRunner.access$000(ParentRunner.java:42)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:184)
at org.junit.runners.ParentRunner.run(ParentRunner.java:236)
at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:50)
at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:467)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:197)
여기서 내가 뭘 잘못하고 있니? .jsp 페이지에서 Hello World를 보여줍니다.
나는 나의 이전 질문에 대해 다음과 같이 대답하고있다.
해결법
-
==============================
1.요청 된 메소드 매핑과 관련된 몇 가지 문제가 있습니다.
요청 된 메소드 매핑과 관련된 몇 가지 문제가 있습니다.
이상적으로는 반환 된 내용이 스트리밍되도록 지정하려면 메소드에 @ResponseBody 주석이 있어야합니다.
@RequestMapping(value = "index", method = RequestMethod.GET) @ResponseBody public HashMap<String, String> handleRequest() { HashMap<String, String> model = new HashMap<String, String>(); String name = "Hello World"; model.put("greeting", name); return model; }
이제 이것으로 테스트는 다음과 같이 보입니다.
mockMvc.perform(get("/index").contentType(MediaType.APPLICATION_JSON)).andExpect(status().isOk()).andExpect(content().contentTypeCompatibleWith("application/json")) .andExpect(jsonPath("$.greeting").value("Hello World"));
귀하의 경우, 무슨 일이 벌어지고 있는지, 봄은 뷰 이름을 알아 내려고하고 뷰 이름을 인덱스로 가져오고 있습니다. 이것은 다시 컨트롤러 경로이며 따라서보고있는 순환 뷰 경로 오류입니다.
-
==============================
2.또한 요청 매핑을 확인해야합니다.
또한 요청 매핑을 확인해야합니다.
get ( "/ ...")이 @RequestMapping과 일치합니까?
handleRequest가 호출되지 않으면 Content type이 설정되지 않은 것과 동일한 오류가 발생합니다.
from https://stackoverflow.com/questions/22183178/java-lang-assertionerror-content-type-not-set-while-junit-spring-mvc-controller by cc-by-sa and MIT license
'SPRING' 카테고리의 다른 글
[SPRING] 많은 관계를 설정하거나 목록을 최대 절전 모드로 전환 하시겠습니까? (0) | 2019.03.01 |
---|---|
[SPRING] 주석이 달린 @Controller를 사용하는 AbstractWizardFormController (0) | 2019.03.01 |
[SPRING] 싱글 톤 Bean은 동시 요청을 어떻게 처리합니까? (0) | 2019.03.01 |
[SPRING] 봄 MVC : 인덱스 페이지에 대한 기본 컨트롤러를 만드는 방법? (0) | 2019.03.01 |
[SPRING] 간단한 영어로 AOP, Dependency Injection 및 Inversion Of Control이란 무엇입니까? (0) | 2019.03.01 |