英文字典中文字典


英文字典中文字典51ZiDian.com



中文字典辞典   英文字典 a   b   c   d   e   f   g   h   i   j   k   l   m   n   o   p   q   r   s   t   u   v   w   x   y   z       







请输入英文单字,中文词皆可:

resource    音标拼音: [r'isɔrs]
n. 资源,财力;办法,智谋;C消遣,娱乐

资源,财力;办法,智谋;C消遣,娱乐

resource
资源

resource
资源

resource
n 1: available source of wealth; a new or reserve supply that
can be drawn upon when needed
2: a source of aid or support that may be drawn upon when
needed; "the local library is a valuable resource"
3: the ability to deal resourcefully with unusual problems; "a
man of resource" [synonym: {resource}, {resourcefulness},
{imagination}]

Resource \Re*source"\ (r?*s?rs"), n. [F. ressource, fr. OF.
ressourdre, resourdre, to spring forth or up again; pref. re-
re- sourdre to spring forth. See {Source}.]
1. That to which one resorts orr on which one depends for
supply or support; means of overcoming a difficulty;
resort; expedient.
[1913 Webster]

Threat'nings mixed with prayers, his last resource.
--Dryden.
[1913 Webster]

2. pl. Pecuniary means; funds; money, or any property that
can be converted into supplies; available means or
capabilities of any kind.
[1913 Webster]

Scotland by no means escaped the fate ordained for
every country which is connected, but not
incorporated, with another country of greater
resources. --Macaulay.
[1913 Webster]

Syn: Expedient; resort; means; contrivance.
[1913 Webster]

188 Moby Thesaurus words for "resource":
ability, action, ad hoc measure, address, adeptness, adroitness,
airmanship, answer, aptitude, artfulness, artifice, artisanship,
artistry, assets, available means, backlog, balance, bonanza,
bravura, brilliance, cache, capability, capacity, capital,
capital goods, capitalization, cash, cleverness, command,
competence, contraption, contrivance, control, coordination,
cornucopia, countermove, coup, course of action, craft,
craftsmanship, creation, cunning, deftness, demarche,
dernier ressort, device, dexterity, dexterousness, dextrousness,
diplomacy, dodge, efficiency, effort, expediency, expedient,
expertise, facility, fashion, finesse, font, forte, fortune, fount,
fountain, fund, funds, gimmick, gold mine, grace, grip, grist,
gumption, guts, handiness, holdings, hope, horsemanship,
imagination, imaginativeness, improvisation, ingeniousness,
ingenuity, initiative, invention, inventiveness, jury-rig,
jury-rigged expedient, know-how, last expedient, last resort,
last shift, liquid assets, lode, makeshift, maneuver, manner,
marksmanship, mastership, mastery, mean, means, measure, method,
mine, mode, money, move, nest egg, opportunity, pis aller,
possessions, possibility, practical ability, proficiency, property,
prowess, quality, quarry, quick-wittedness, quickness, readiness,
recourse, refuge, relief, reserve, reserve fund, reserve supply,
reserves, reservoir, resort, resourcefulness, resources, riches,
savings, savoir-faire, savvy, seamanship, shake-up, shift,
sinking fund, skill, skillfulness, solution, something in reserve,
source, source of supply, spring, staple, step, stockpile, stopgap,
stratagem, strength, string, stroke, stroke of policy, style,
substance, substitute, subterfuge, supply, surrogate, system, tact,
tactfulness, tactic, talent, technical brilliance,
technical mastery, technical skill, technique, temporary expedient,
timing, trick, trump, unexpended balance, vein, virtuosity, way,
wealth, well, wellspring, wit, wizardry, working hypothesis,
working proposition, workmanship, worth


请选择你想看的字典辞典:
单词字典翻译
Resource查看 Resource 在百度字典中的解释百度英翻中〔查看〕
Resource查看 Resource 在Google字典中的解释Google英翻中〔查看〕
Resource查看 Resource 在Yahoo字典中的解释Yahoo英翻中〔查看〕





安装中文字典英文字典查询工具!


中文字典英文字典工具:
选择颜色:
输入中英文单字

































































英文字典中文字典相关资料:


  • Injection with @Resource :: Spring Framework
    Spring also supports injection by using the JSR-250 @Resource annotation (jakarta annotation Resource) on fields or bean property setter methods This is a common pattern in Jakarta EE: for example, in JSF-managed beans and JAX-WS endpoints Spring supports this pattern for Spring-managed objects as well
  • java - 聊聊依赖注入注解@Resource和@Autowired - 个人文章 - SegmentFault 思否
    1 前言 @Resource和@Autowired注解都可以在Spring Framework应用中进行声明式的依赖注入。而且面试中经常涉及到这两个注解的知识点。今天我们来总结一下它们。 2 @Resource 全称javax annotation Resource,它属于JSR-250规范的一个注解,包含Jakarta EE(J2EE)中。Spring提供了对该注解的支持。
  • Wiring in Spring: @Autowired, @Resource and @Inject
    Unlike the @Resource annotation, which resolves dependencies by name first, the default behavior of the @Inject annotation is to resolve dependencies by type This means that even if the class reference variable name differs from the bean name, the dependency will still be resolved, provided that the bean is defined in the application context
  • @Resource Annotation in Spring - ConcretePage. com
    @Resource vs @Autowired 1 In Spring, the JSR-250 @Resource and Spring @Autowired both annotations are used to solve dependency injection The @Resource is supported only for fields and bean property setter methods with a single argument whereas @Autowired applies to fields, constructors, and multi-argument methods 2 In case when multiple beans are eligible to be injected, we should prefer
  • @Resource注解用法_resource注解怎么用-CSDN博客
    @Resource用法与@Autowired 用法 用法相似,也是做依赖注入的,从容器中自动获取bean。 但还是有一定的区别。 在启动spring的时候,首先要启动容器; 启动spring容器时,会默认寻找容器扫描范围内的可加载bean,然后查找哪些bean上的属性和方法上有@Resource注解;
  • The difference between @Resource and @Autowired in Spring
    Both the @Resource annotation and the @Autowired annotation are implemented in the Spring Framework source code through the reflection mechanism and the BeanPostProcessor interface for dependency injection In practice, we can study the corresponding source implementations to get a deeper understanding of how they work, so that we can use these dependency injection annotations better
  • Resource (Java Platform SE 8 ) - Oracle
    A product specific name that this resource should be mapped to The name of this resource, as defined by the name element or defaulted, is a name that is local to the application component using the resource (It's a name in the JNDI java:comp env namespace ) Many application servers provide a way to map these local names to names of resources known to the application server
  • @Autowired vs @Resource in Spring - Java Guides
    1 Introduction In the Spring framework, @Autowired and @Resource are annotations used for dependency injection, which is a way to achieve Inversion of Control (IoC) by allowing the Spring container to inject dependencies into components @Autowired is Spring's own annotation, while @Resource is specified by the JSR-250 Java standard 2 Key Points 1
  • @Autowired, @Resource and @Inject - Javainsimpleway
    In above scenario twoWheeler is not injected using @Autowired and @Inject But twoWheeler is injected using @Resource Reason -> @Resource uses the variable name which is twoWheeler to make dependency injection and ignores the @Qualifier But @Autowired and @Inject fails as they try to find a bean name specified in @Qualifier So @Autowired and @Inject works very similar but @Resource has





中文字典-英文字典  2005-2009