- mongodb - 在 MongoDB mapreduce 中,如何展平值对象?
- javascript - 对象传播与 Object.assign
- html - 输入类型 ="submit"Vs 按钮标签它们可以互换吗?
- sql - 使用 MongoDB 而不是 MS SQL Server 的优缺点
前几天开始学习这个Spring Hello World教程: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 必须扫描我的文件以搜索注解,例如,当 Controller 类发现一个方法被注解时通过 @RequestMapping("/hello") 注释知道该方法处理向以“/hello”结尾的 URL 的 HTTP 请求。这很简单……
现在我的疑问与我可以在 STS\Eclipse 中自动构建的 Spring MVC 模板项目有关。
当我在 STS 中创建一个新的 Spring MVC 项目时,我的 DispatcherServlet 是由一个名为 servlet-context.xml 的文件配置的,该文件包含一些类似于上一个示例文件。
在这个文件中,我还有组件扫描标签:
<context:component-scan base-package="com.mycompany.maventestwebapp" />
但我还有另一个标签(看起来有类似的任务),这个:
<annotation-driven />
这两个标签有什么区别?
另一个“奇怪”的事情是前面的示例(不使用注释驱动标签)与 STS 使用 Spring MVC 模板项目创建的项目非常相似,但是如果我从其配置中删除注释驱动标签文件项目不运行并给我以下错误:HTTP Status 404 -
在堆栈跟踪中我有:
警告:org.springframework.web.servlet.PageNotFound - 在名为“appServlet”的 DispatcherServlet 中找不到具有 URI [/maventestwebapp/] 的 HTTP 请求的映射
但是为什么呢?前面的例子在没有注释驱动标签的情况下运行良好,这个 Controller 类非常相似。实际上,只有一种方法可以处理对“/”路径的 HTTP 请求
这是我的 Controller 类的代码:
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";
}
有人可以帮我理解这件事吗?
非常感谢!
最佳答案
<mvc:annotation-driven />
意味着您可以定义 spring beans 依赖项,而无需实际在 XML 中指定一堆元素或实现接口(interface)或扩展基类。例如 @Repository
告诉spring一个类是一个Dao,而无需扩展JpaDaoSupport
或 DaoSupport 的其他子类。同样@Controller
告诉 spring 指定的类包含将处理 Http 请求的方法,而无需实现 Controller 接口(interface)或扩展实现 Controller 的子类。
当 spring 启动时,它会读取其 XML 配置文件并查找 <bean
如果看到类似 <bean class="com.example.Foo" />
的内容,则其中的元素和 Foo 被标记为 @Controller
它知道该类是一个 Controller 并将其视为 Controller 。默认情况下,Spring 假定它应该管理的所有类都明确定义在 beans.XML 文件中。
使用 <context:component-scan base-package="com.mycompany.maventestwebapp" />
进行组件扫描告诉 spring 它应该在类路径中搜索 com.mycompany.maventestweapp 下的所有类并查看每个类以查看它是否具有 @Controller
, 或 @Repository
, 或 @Service
, 或 @Component
如果是这样,那么 Spring 将向 bean 工厂注册该类,就好像您输入了 <bean class="..." />
在 XML 配置文件中。
在一个典型的 Spring MVC 应用程序中,你会发现有两个 Spring 配置文件,一个配置应用程序上下文的文件通常以 Spring 上下文监听器启动。
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
Spring MVC 配置文件通常以 Spring 调度程序 servlet 启动。例如。
<servlet>
<servlet-name>main</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>main</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
Spring 支持分层 bean 工厂,因此在 Spring MVC 的情况下,调度程序 servlet 上下文是主应用程序上下文的子级。如果向 servlet 上下文询问名为“abc”的 bean,它将首先在 servlet 上下文中查找,如果在其中找不到它,它将在父上下文中查找,即应用程序上下文。
数据源、JPA 配置、业务服务等通用 bean 是在应用程序上下文中定义的,而 MVC 特定配置不是与 servlet 关联的配置文件。
希望这会有所帮助。
关于java - Spring MVC : difference between <context:component-scan> and <annotation-driven/> tags?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13661985/
我正在尝试加载外部 SVG 并将其附加到 Electron 项目中的现有 SVG。 d3.xml 方法对我不起作用,所以我正在查看 d3.symbols ,希望如果我提供路径数据(来自 fs.read
我正在编写一个 Web 应用程序,使用 Go 作为后端。我正在使用这个 GraphQL 库 (link)和 Echo Web 框架 (link) .问题在于 graphql-go 库在 Go 中使用了
有没有办法改造 gin.Context至 context.Context在围棋?构建 Go 微服务应该使用什么? 最佳答案 标准库的 context.Context type 是一个接口(interf
如果我能够像这样注册一个接收器: LocalBroadcastManager.getInstance(this).registerReceiver(mMessageReceiver, new Inte
如果我有 appengine.Context 而不是 ,我不知道如何调用 cloud.WithContext 和 google.DefaultClient >上下文。上下文。 有(旧的)“appeng
有什么区别- AccountManager accountManager = (AccountManager) context.getSystemService(Context.ACCOUNT_SER
我刚读了这篇文章:Build You Own Web Framework In Go为了在处理程序之间共享值,我选择了 context.Context我通过以下方式使用它在处理程序和中间件之间共享值:
在 Visual Studio Code 中,我对 3 个“上下文”菜单项感到非常困惑:Run Tests in Context和 Debug Tests in Context和 Run .NET C
我正在使用带有 和 @Autowired 的 Spring 2.5.6 版本。 虽然我在调度程序上下文中使用 SimpleUrlHandlerMapping ,但一切正常 - Autowiring 工
我使用的是 Context.registerReceiver()、Context.sendBroadcast(Intent) 和 Context.unregisterReceiver() 但是当我看到
问题在于以下错误, [错误] 在 scala.tools.nsc.typechecker.Typers$Typer.typedApply$1(Typers.scala:4580)[错误] 在 scal
最近我正在尝试使用 SoundPool 在我的应用程序中播放一些简单的音效 但不幸的是它在 AVD 中不起作用并且应用程序崩溃 “上下文”到底是什么意思? 完全不懂 提前致谢 最佳答案 任何上下文都允
我正在使用上下文建议器,我想知道我们是否可以设置用于建议的上下文范围,而不是使用所有上下文。 目前查询需要匹配所有上下文。我们能否在上下文中添加“或”运算和/或指定用于特定查询的上下文? 以here为
我被一个使用这种方法的函数卡住了。所以我知道如何使用 expressionValue(with:context:) 函数,但上下文如何参与对我来说仍然是不透明的。也许有人有简单的例子? try tra
我正在尝试在上下文管理器中更改我的 python 程序中的目录。使用 invoke.context.Context 似乎是正确的方法,从 Fabric 文档中获取并且使用常规 with os.chdi
我最近开始使用 Android Studio 处理我的 Android 项目。我注意到在 IDE 的右下角,有文本 Context: .好奇心打败了我,所以现在我正在网上搜索更多信息。我还没有找到任
假设我有这些功能: func A(ctx context.Context) { // A takes some time to process } func B(ctx context.Con
所以,我有一个 context.Context( https://golang.org/pkg/context/ ) 变量,有没有办法列出这个变量包含的所有键? 最佳答案 可以使用不安全反射列出 co
我正在尝试找出传播 context.Context 的正确方法用于在使用 Gin 时使用 OpenTelemetry 进行跟踪。 我目前有一个 gin调用函数并传递 *gin.Context 的处理程
我们可以使用 Remove["context`*"] 删除特定上下文中的所有符号。 .但是是否可以删除 "context`"自己从系统中删除,以便它不再在 Contexts[] 中列出? 最佳答案 据
我是一名优秀的程序员,十分优秀!