Web アプリケーションでアノテーション付きコントローラーに Spring 3 MVC サポートを使用しようとしています。私の構成は次のとおりです。
1- web.xml:
<servlet>
<servlet-name>dispatcher</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>dispatcher</servlet-name>
<url-pattern>/springmvc/*</url-pattern>
</servlet-mapping>
2- applicationContext.xml:私の Web ページは直接 webapp フォルダーの下にあります
<context:component-scan base-package="com.myapp" />
<mvc:annotation-driven />
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/"/>
<property name="suffix" value=".jsp"/>
</bean>
3- コントローラー:
@Controller
@RequestMapping("/test.jsp")
public class Test{
@RequestMapping(method = RequestMethod.GET)
public String get() {
System.out.println("######## GET METHOD FOR test.jsp ########");
return "test.jsp";
}
}
注:次のように、 applicationContextをServletContextListenerにロードしています。
ApplicationContext context = new ClassPathXmlApplicationContext(
"classpath:spring/config/applicationContext.xml");
この問題を解決する方法を教えてください、ありがとう。
また、すべての JSP ページにコントローラーがあるわけではないため、ディスパッチャ サーブレットがアプリケーション内のすべてのページではなく特定の JSP ページをディスパッチできるかどうかという別の質問があります。