Spring MVC:<context:component-scan>和<notation驱动的/>标签之间的区别?
几天前,我开始学习这个春季你好世界教程:http://viralpatel.net/blogs/spring-3-mvc-create-hello-world-application-spring-3-mvc/
在本教程中,Spring DispatcherServlet是使用spring-servlet.xml文件配置的,这个:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd">
<context:component-scan base-package="net.viralpatel.spring3.controller" />
<bean id="viewResolver"
class="org.springframework.web.servlet.view.UrlBasedViewResolver">
<property name="viewClass"
value="org.springframework.web.servlet.view.JstlView" />
<property name="prefix" value="/WEB-INF/jsp/" />
<property name="suffix" value=".jsp" />
</bean>
在这个文件中,我使用 context:component-scan 标记来表示 Spring 必须扫描我的文件来搜索注释,因此,例如,当控制器类发现某个方法由 @RequestMapping(“/hello”) 注释注释时,知道此方法处理 HTTP 请求,该请求朝向以“/hello”结尾的 URL。这很简单...
现在我的怀疑与Spring MVC模板项目有关,我可以在STS\Eclipse中自动构建。
当我在STS中创建新的Spring MVC项目时,我的DispatcherServlet是由一个名为servlet-context的文件配置的.xml其中包含一些类似于上一个示例文件的配置。
在此文件中,我仍然有组件扫描标记:
<context:component-scan base-package="com.mycompany.maventestwebapp" />
但我还有另一个标签(看起来像有类似的任务),这个:
<annotation-driven />
这两个标签有什么区别?
另一个“奇怪”的事情是,前面的示例(不使用注释驱动的标记)与STS使用Spring MVC模板项目创建的项目非常相似,但是如果我从其配置文件中删除注释驱动的标记,则项目不会运行并给我以下错误:HTTP状态404 -
在堆栈跟踪中,我有:
WARN : org.springframework.web.servlet.PageNotFound - 在 DispatcherServlet 中找不到带有 URI [/maventestwebapp/] 的 HTTP 请求的映射,名称为“appServlet”
但是为什么?前面的示例在没有注释驱动标记的情况下运行良好,并且此控制器类非常相似。实际上,只有一种方法可以处理指向“/”路径的HTTP请求。
这是我的控制器类的代码:
package com.mycompany.maventestwebapp;
import java.text.DateFormat;
import java.util.Date;
import java.util.Locale;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
/**
* Handles requests for the application home page.
*/
@Controller
public class HomeController {
private static final Logger logger = LoggerFactory.getLogger(HomeController.class);
/**
* Simply selects the home view to render by returning its name.
*/
@RequestMapping(value = "/", method = RequestMethod.GET)
public String home(Locale locale, Model model) {
logger.info("Welcome home! The client locale is {}.", locale);
Date date = new Date();
DateFormat dateFormat = DateFormat.getDateTimeInstance(DateFormat.LONG, DateFormat.LONG, locale);
String formattedDate = dateFormat.format(date);
model.addAttribute("serverTime", formattedDate );
return "home";
}
有人能帮我理解这件事吗?
谢谢!