单词本

  • Global pattern 全局模式
  • wildcard 通配符
  • You can use this, for example, to parameterize a base URL based on some external configuration.

例如,您可以使用此参数来基于某些外部配置参数化基本URL

  • drop table 删除表
  • By default the DDL execution (or validation) is deferred until the ApplicationContext has started

默认情况下,DDL执行(或验证)将延迟到ApplicationContext启动为止

  • rephrase

If you rephrase a question or statement, you ask it or say it again in a different way. 重新措辞; 换种方式表述

  • elaborate 详细阐述
  • projection =calculation 估计
  • arbitrarily 任意的
  • it treats type mismatches as validation errors that can be evaluated by the application, not as system errors.

它会把数据类型不匹配当成可由应用自行处理的运行时验证错误,而非系统错误。

  • Thus you need not duplicate your business objects' properties as simple, untyped strings in your form objects simply to handle invalid submissions, or to convert the Strings properly.

因此,您无需将业务对象的属性复制为表单对象中的简单无类型字符串,只需处理无效提交或正确转换字符串(duplicate…as)

  • It is completely integrated with the Spring IoC container and as such allows you to use every other feature that Spring has.

它与Spring IoC容器 做到了无缝集成,这意味着,Spring提供的任何特性,在Spring MVC中你都可以使用。(as such因此)

  • WebApplicationInitializer is an interface provided by Spring MVC that ensures your code-based configuration is detected and automatically used to initialize any Servlet 3 container.

WebApplicationInitializer 是Spring MVC提供的一个接口,它会查找你所有基于代码的配 置,并应用它们来初始化Servlet 3版本以上的web容器。(被动译作主动

  • over and above 除…之外
  • ApplicationContext instances in Spring can be scoped.

Spring中 的 ApplicationContext 实例是可以有范围(scope)的

  • However, you don’t need to do that initially since Spring MVC maintains a list of default beans to use if you don’t configure any.

当然这只是可选的,Spring MVC维护了一个默 认的bean列表,如果你没有进行特别的配置,框架将会使用默认的bean。

  • Handler exception resolvers that are declared in the WebApplicationContext pick up exceptions that are thrown during processing of the request.

如果在处理请求的过程中抛出了异常,那么上下文 WebApplicationContext 对象中所定义的异常处理器将会负责捕获这些异常。

  • HandlerMapping Maps incoming requests to handlers and a list of pre- and post-processors (handler interceptors) based on some criteria the details of which vary by HandlerMappingimplementation.

它会根据某些规则将进入容器的请求映射到 具体的处理器以及一系列前处理器和后处理器(即处理器 拦截器)上。具体的规则视 HandlerMapping 类的实现不同 而有所不同。

  • allow for 支持
  • effectively 实际上
  • If you specify a multipart file resolver, the request is inspected for multiparts

如果你配置了multipart文件处理器,那么框架将查找该文件是不是multipart(分为多个部 分连续上传)的。

  • String that is passed to the context instance (specified by contextClass) to indicate where context(s) can be found

一个指定了上下文配置文件路径的字符串,该值会被传入 给 contextClass 所指定的上下文实例对象

  • in case of万一,如果
  • belter

a real belter of a match,了不起的人事物等

  • further more 而且,此外
  • The @Controller annotation indicates that a particular class serves the role of a controller.

@Controller 注解表明了一个类是作为控制器的角色而存在的(serve as能起什么作用)

  • act as 充当

  • Typically the class-level annotation maps a specific request path (or path pattern) onto a form controller, with additional method-level annotations narrowing the primary mapping for a specific HTTP method request method ("GET", "POST", etc.) or an HTTP request parameter condition.

一般来说,类级别的注解负责将一个特定(或符合某种模式)的请 求路径映射到一个控制器上,同时通过方法级别的注解来细化映射,即根据特定的HTTP请求 方法(“GET”“POST”方法等)、HTTP请求中是否携带特定参数等条件,将请求映射到匹配的 方法上。

  • Prior to Spring 3.1, type and method-level request mappings were examined in two separate stages

在Spring 3.1之前,框架会在两个不同的阶段分别检查类级别和方法级别的请求映射(prior to,stage)

  • Think of controller methods as a collection of unique endpoints with mappings for each method derived from type and method-level @RequestMapping information.

你可以把控制器中的一系列处理方法当成是一系列独立的服务节 点,每个从类级别和方法级别的 @RequestMapping 注解中获取到足够请求1路径映射信息。

  • examine

look at something carefully

  • populate

V-T及物动词If an area is populated by certain people or animals, those people or animals live there, often in large numbers. 聚居; 栖息

  • invoke 调用
  • Patterns in @RequestMapping annotations support ${…​} placeholders against local properties and/or system properties and environment variables

@RequestMapping注释中的模式支持针对本地属性和/或系统属性和环境变量的$ {...}占位符 against 针对

  • resemble

V-T[no cont]及物动词If one thing or person resembles another, they are similar to each other. 像

  • more finely grained 粒度更精细
  • along with

随着...一起,翻译时直接断句加连词,如还可以...

  • optionally

译作可选的,根据需要...

  • When declared within a controller such methods apply to exceptions raised by @RequestMapping methods of that contoroller (or any of its sub-classes).

如果 @ExceptionHandler 方法是在控制器内部定义的,那么它会接收并处理由控制器(或其任何子类)中的 @RequestMapping 方法抛出的异常。

  • depending on 根据,取决于
  • transparently 显然的
  • up...until

在...之前,到...为止

  • Most arguments can be used in arbitrary order with the only exception of BindingResult arguments.

大多数参数都可以任意的次序出现,除了唯一的一个例外: BindingResult 参数
with the only exception of 例外

  • concurrently 同时发生
  • Command or form objects to bind request parameters to bean properties (via setters) or directly to fields, with customizable type conversion, depending on @InitBinder methods and/or the HandlerAdapter configuration

命令或表单对象,它们用于将请求参数直接绑定到bean字段(可能是通过setter方法)。
你可以通过 @InitBinder 注解和/或 HanderAdapter 的配置来定制这个过程的类型转换。

  • A ModelAndView object, with the model implicitly enriched with command objects and the results of @ModelAttribute annotated reference data accessor methods.

ModelAndView 对象,其中model隐含填充了命令对象,以及注解了 @ModelAttribute 字段的存取器被调用所返回的值。

  • asynchronously 异步
  • increase performance 增加性能
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 205,132评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,802评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,566评论 0 338
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,858评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,867评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,695评论 1 282
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,064评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,705评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 42,915评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,677评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,796评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,432评论 4 322
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,041评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,992评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,223评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,185评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,535评论 2 343

推荐阅读更多精彩内容

  • rljs by sennchi Timeline of History Part One The Cognitiv...
    sennchi阅读 7,289评论 0 10
  • The Inner Game of Tennis W Timothy Gallwey Jonathan Cape ...
    网事_79a3阅读 11,705评论 2 19
  • **2014真题Directions:Read the following text. Choose the be...
    又是夜半惊坐起阅读 9,380评论 0 23
  • 20181106 规划,是一种人生态度,随机,却多了生活情趣,接受计划中的变化,享受变化中的计划。 2018110...
    九色鹿阅读 529评论 0 0
  • 这书是作于明朝,书名却很新潮,颇像是这个时代的产物。看见这书名,我最先想到的就是某电视剧里的“贱人曾”,言简意赅,...
    明半灭阅读 112评论 0 1