サンプルアプリを用意し、
view/HelloWorld.html
ページ。コントローラーから、次を返します
public String home(Locale locale, Model model) {
return "HelloWorld";
}
デバッグ モードでは、次の警告/エラーが表示されます。
WARN : org.springframework.web.servlet.PageNotFound - No mapping found for HTTP request with URI [/HelloWorld/WEB-INF/views/HelloWorld.html] in DispatcherServlet with name 'appServlet'
私の src/main/webapp/WEB-INF/spring/appServlet/servlet-context.xml の内容
<!-- DispatcherServlet Context: defines this servlet's request-processing infrastructure -->
<!-- Enables the Spring MVC @Controller programming model -->
<annotation-driven />
<!-- Handles HTTP GET requests for /resources/** by efficiently serving up static resources in the ${webappRoot}/resources directory -->
<resources mapping="/resources/**" location="/resources/" />
<!-- Resolves views selected for rendering by @Controllers to .jsp resources in the /WEB-INF/views directory -->
<beans:bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<beans:property name="prefix" value="/WEB-INF/views/" />
<beans:property name="suffix" value=".html" />
</beans:bean>
.html の名前を .jsp に変更し、上記を .jsp に変更すると、問題なく動作します。