1
我的視圖有什麼問題?Spring MVC。未找到具有URI的HTTP請求的映射
@EnableWebMvc
@Configuration
class WebMvcConfig extends WebMvcConfigurerAdapter {
@Bean
public ViewResolver getViewResolver(){
InternalResourceViewResolver resolver = new InternalResourceViewResolver();
resolver.setPrefix("/WEB-INF/view/");
resolver.setSuffix(".jsp");
return resolver;
}
}
@Configuration
@ComponentScan(basePackages = "com.wordparty")
class AppConfig {
}
@Controller
class IndexController {
@RequestMapping(value = "/", method = RequestMethod.GET)
public String showIndex() {
return "index";
}
}
這是我的封裝結構
main
--java
----com.wordparty
...
--webapp
----WEB-INF
------view
--------index.jsp
我收到404響應。並在控制檯中看到我的頁面未找到的消息。如果我寫@ResponseBody,那麼它從控制器返回文本沒有問題... 哪裏出錯?
P.S.我使用Spring 4 + Java的8
你輸入什麼網址? – duffymo 2014-12-27 19:49:13
我的根申請 – 2014-12-27 19:51:47
請填寫完整。 URL或部署不正確。 – duffymo 2014-12-27 19:53:22