我正在尝试在我的 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:我的网页直接在 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";
}
}
注意:我在ServletContextListener中加载applicationContext ,如下所示:
ApplicationContext context = new ClassPathXmlApplicationContext(
"classpath:spring/config/applicationContext.xml");
请告知如何解决这个问题,谢谢。
我还有另一个问题,如果可以让调度程序 servlet 调度特定的 jsp 页面,而不是应用程序中的所有页面,因为并非我的所有 jsp 页面都有控制器。