Maven Jetty Plugin 配置指南(翻译)

Maven Jetty Plugin 配置指南(翻译)
Maven Jetty Plugin 配置指南(翻译)

Maven Jetty Plugin 配置指南(翻译)

Jetty 版本信息

Jetty7 - 此插件更名为jetty-maven-plugin,以便更符合maven2的协定。为了在Web 应用做快速应用开发做准备,详见多Web应用源目录。

为了在Jetty里运行一个Web应用,你如果按照Maven默认的做法构造(resources文件存放,${basedir}/src/main/webapp下Classes文件存放在${project.build.outputDirectory}下,web.xml的配置描述${basedir}/src/main/webapp/WEB-INF/web.xml),你不需要配置任何其它东西。

只需输入:mvn jetty:run

这将在端口为8080的Jetty服务器上启动你的项目。Jetty将持续运行,直到插件是明确停止,例如,按下,您也可以使用mvn jetty:stop命令。

委托这个插件运行Web应用是非常方便的,因为它可以配置成能定期扫描Web应用的任何改变和自动部署Web应用。这就可以消除开发周期中编译和部署的步骤从而更加富有成效。你使用的IDE时对项目做的任何改变,都将直接自动导入到当前运行的web容器里,使您可以立即对其进行测试,立竿见影。

如果不管出于什么原因,你总不能运行一个未组合过的web应用吧,在下文讨论中提到这个插件同样也支持jetty:run-war和jetty:run-exploded命令。

关于其他命令的更多信息请查阅Jetty文档中的mvn jetty:run page、mvn

jetty:run-exploded page、mvn jetty:run-war page。

自动执行插件

有时候,例如在做集成测试时,你当然希望在测试开始时自动运行你的项目,测试完成时停止,而不只是手动的在命令行执行mvn jetty:run吧。

要做到这一点,你需要为jetty 插件创建几个脚本,并使用

true配置选项来预防Jetty无限期运行,迫使它只在执行Maven时才运行。

像下面pom.xml片段中描述的pre-integration-test和post-integration-test 就是用来触发执行和关闭Jetty:

org.mortbay.jetty

maven-jetty-plugin

6.1.10

10

foo

9999

start-jetty

pre-integration-test

run

0

true

stop-jetty

post-integration-test

stop

注意:Maven默认都是通过org.apache.maven.plugins的groupId来查找插件的,即使这个groupId跟上面要表达的内容完全不同。为了更明确的指向这个groupId是我们需要的插件,唯一的办法就是在settings.xml也做如下设置:

...

org.mortbay.jetty

如何通过命令行停止插件

委托Jetty插件无限期运行的目标包括run、run-war和run-exploded。你可以在视窗控制终端(如DOS窗口)使用关闭它,或者在另一个视窗控制终端使用stop目标关闭。如果你希望能使用mvn jetty:stop 执行关闭命令,则需要你在插件中配置一个特殊的端口和控制键。下面是一个例子配置:

org.mortbay.jetty

maven-jetty-plugin

6.1.10

9966

foo

开始:

mvn jetty:start

关闭:

mvn jetty:stop

如何配置插件

配置公共的run, run-war 和run-exploded 目标

不管你执行哪一个Jetty目标,下述的配置参数都是可用的。一般来说它们分为应用于Web容器的配置和应用于具体web应用的配置:

容器级配置

Connectors 可选.一组org.mortbay.jetty.Connector对象,包含jetty的端口监听。如果你不指定任何一个NIO的org.mortbay.jetty.nio.SelectChannelConnector,将默认配置一个8080端口。当然,你可以在命令行使用系统参数jetty.port 改变默认端口。例如"mvn

-Djetty.port=9999 jetty:run"。另外,您也可以指定许多您想要的连接。

jettyConfig 可选。除插件配置参数外,你也可以指定一个jetty.xml文件的路径。当你有其他的web应用和操作需要部署时,或者一些你无法在插件中配置的jetty对象,你就可以使用到它,。

scanIntervalSeconds 可选[秒]。在很短的时间间隔内在扫描web应用检查是

否有改变,如果发觉有任何改变则自动热部署。默认为0,表示禁用热部署检查。任何一个

大于0的数字都将表示启用。

systemPropertie 可选。它们允许你在设置一个插件的执行操作时配置系统属性.更多的信息请查阅Setting System Properties.

userRealms 可选。一组https://www.360docs.net/doc/7b9239934.html,erRealm实现。请注意,它没有一个默认的Realm。如果你在你的web.xml应用了一个Realm,你需要在这里指定一

个对应的Rleam。

requestLog 可选。一个org.mortbay.jetty.RequestLog请求日志接口的实现。

比如org.mortbay.jetty.NCSARequestLog就是一个作为NCSA格式的

实现。

[译注:(美国)国家超级计算技术应用中心(NCSA) 公用格式是常用的标准日志格

式]

“手动重载”

从Jetty 6.2.0pre0版本起,添加了一个新的可用组件,用于控制web应用的重新部署。

配置参数:[manual|automatic]

当你设置成手动模式后,web应用不会自动的扫描和重部署。相反,用户可以控制的Web应用时,通过键入”回车换行键”重载。当设置成自动模式时,将根据scanIntervalSeconds参数的设置不定时的扫描和自动重部署。你也能通过在命令行使用系统参数

-Djetty.reload 配置选择重载的模式。

比如:"mvn -Djetty.reload=manual jetty:run" 将强制手动重载,不管pom.xml文件里如何配置。同理: "mvn -Djetty.reload=automatic -Djetty.scanIntervalSeconds=10 jetty:run" 每隔十秒中后台将重载一次,而不管pom.xml文件里如何配置。

Web应用级配置

contextPath 可选。这个contex地址指向你的webapp.默认情况下,它被设置

成该项目的pom.xml的。当然你也可以设置一个你喜欢的从而覆盖它。

tmpDir 可选。它作为web应用的临时目录。它默认设置在{${basedir}/target}下,但是你也可在这里改变它的路径。

overrideWebXml 可选. 它是一个应用于web应用的web.xml的备用web.xml

文件.这个文件可以存放在任何地方.你可以根据不同的环境中(如测试、开发等等)利用它增

加或修改一个web.xml配置.

webDefaultXml 可选. webdefault.xml文件用来代替webapp默认提供给jetty

的文件.

从6.1.6rc0发行版开始,一个替代的更灵活的方式是配置web应用时使用webAppConfig元素代替上面列出的那些单独的参数。使用webAppConfig元素,你能有

效的调用org.mortbay.jetty.webapp.WebAppContext类中任何setter方法。下面显示的列

子将展示这个元素跟它上面的例子比较是如何配置同样的特性的(当然它们还有更多的特性

能让你设置):

...

...

org.mortbay.jetty

maven-jetty-plugin

10

/biggerstrongerbetterfaster

target/not/necessary

src/main/resources/webdefault.xml

src/main/resources/override-web.xml

/test

${project.build.directory}/work

src/main/resources/webdefault.xml

src/main/resources/override-web.xml

-->

/my/special/jetty.xml

9090

60000

Test Realm

etc/realm.properties

target/yyyy_mm_dd.request.log

90

true

false

GMT

jetty:run的配置

run目标允许你把你未打包的web应用部署到Jetty.它包含在你的pom.xml文件的一部分元素里。下面额外的配置参数都是可用到的:

classesDirectory 这是你的web应用编译的classes存放的路径。你很少需要设置这个参数,其实可以在你的pom.xml用替代它。

webAppSourceDirectory 默认设置在${basedir}/src/main/webapp下。如果你的源文件夹结构跟左边不同,就可以设置这个参数。

webXml默认设置在${maven.war.webxml}或者

${basedir}/src/main/webapp/WEB-INF/web.xml,无论哪个文件都不是空的。如果觉得前两者都不合适,就设置它。

jettyEnvXml 可选。它指向一个jetty-env.xml文件的路径。允许你创建JNDI绑定并满足web.xml中元素中的条件。当然这个文件的使用范围仅仅在你的当前应用和其他应用同时部署时它并没有共享的情况下。(例如使用一个jettyConfig文件)

scanTargets 可选。周期性的扫描除了插件自动扫描外的文件和文件夹列表。

scanTargetPatterns 可选。如果你想扫描有一长串的额外文件,通过使用模式匹配表达式制定它们更加方便,它可以用来替代参数的枚举展示。这个参数包含一组。每一个都是由一个[或者]参数来指定文件的匹配模式。

下面的示例设置了所有这些参数:

...

...

org.mortbay.jetty

maven-jetty-plugin

${basedir}/src/staticfiles

${basedir}/src/over/here/web.xml

${basedir}/src/over/here/jetty-env.xml

${basedir}/somewhere/else

src/mydir

src/myfile.txt

src/other-resources

**/*.xml

**/*.properties

**/myspecial.xml

**/myspecial.properties

你也可以查看jetty:run parameter reference。

配置jetty:run-war

这个目标将首先把你的web应用打包成一个war文件,再发布到Jetty。如果你设置扫描间隔为非零,Jetty将观察你的pom.xml和war文件。如果有任何变化,它都将重新打包并部署war。

配置参数的详细描述如下:

webApp 打包后war的路径。默认为

${project.build.directory}/${project.build.finalName}.war。如果目标存储空间不足,设置它到你的自定义路径下。

详细设置如下:

...

...

org.mortbay.jetty

maven-jetty-plugin

${basedir}/target/mycustom.war

你也可以查看jetty:run-war parameter reference.

配置jetty:run-exploded

这个目标首先装配你的web应用到exploded-war文件,再发布到Jetty。如果你设置扫描间隔为非零,Jetty将观察你的pom.xml, WEB-INF/lib, WEB-INF/classes和

WEB-INF/web.xml的改变。如果有必要,它都将重新打包并部署war。

配置参数的详细描述如下:

webApp exploded-war的路径。默认在

${project.build.directory}/${project.build.finalName},但是能通过设置这个参数,从而覆盖它。

详细设置如下:

...

...

org.mortbay.jetty

maven-jetty-plugin

${basedir}/target/myfunkywebapp

你也可以查看jetty:run-exploded parameter reference.

设置系统属性

你可以为插件的执行操作按name/value成对的方式指定系统属性。

请注意,如果发现有系统属性已经设置过(例如从命令行或者JVM本身),则这些配置的属性不会覆盖它们。

这个特性在整理命令行和保存一系列的键盘键入操作时是很有用的。

譬如,你通常会需要产生Commons logging:

mvn https://www.360docs.net/doc/7b9239934.html,mons.logging.Log=https://www.360docs.net/doc/7b9239934.html,mons.logging.impl.SimpleLog jetty:run

使用了systemProperty配置的命令行可以再次更简短的运行mvn jetty:run,看下面的pom.xml :

...

...

org.mortbay.jetty

maven-jetty-plugin

...

https://www.360docs.net/doc/7b9239934.html,mons.logging.Log

https://www.360docs.net/doc/7b9239934.html,mons.logging.impl.SimpleLog

...

注意:你可以按或者的方式指定的名称,使用哪个按你的喜好吧。

日志

Jetty本身并没有依赖一个特定的日志框架,它使用一个内置的日志记录器来输出标准错误。不管怎样,允许了Jetty和其他日志方法集成,如果在类路径中发现了一个SLF4J日志的实现,它的使用将优先于Jetty内置的日志记录器。

其实Jetty的JSP引擎已经包含了一个日志依赖。如果你使用JSP 2.0(即你运行的Java 虚拟机[JVM]版本<1.5),这个JSP引擎依赖于commons-logging。默认的commons-logging 日志记录器在记录信息为INFO及以上级别[DEBUG,WARN,ERROR]时,将提供插件使用

的jcl04-over-slf4j和simple-slf4j的实现。

您可以忽略这一点,按照下列步骤提供自己的commons-logging:

1. 使用插件中增加一个commons-logging和一个commons-logging

的实现到插件类路径(如log4j)。请注意,如果您想把Jetty 容器的日志也将发送到这个记录器,你还应该加上slf4j-jcl这个用于桥接的jar包:

org.mortbay.jetty

maven-jetty-plugin

6.0-SNAPSHOT

5

commons-logging

commons-logging

1.1

jar

org.slf4j

slf4j-jcl

1.0.1

jar

log4j

log4j

1.2.13

jar

2.用-Dslf4j=false系统属性运行插件:

mvn -Dslf4j=false jetty:run

注意:如果你使用的是log4j,你将需要告诉log4j你配置文件的位置。譬如:

mvn -Dslf4j=false -Dlog4j.configuration=file:./target/classes/log4j.properties jetty:run

如果您使用的是JSP2.1 (即你运行的Java虚拟机[JVM]版本>=1.5 ),那太好了,因为这个JSP已经没有什么特别的日志依赖。

系统参数设置-Tunning Parameter说明及Setting标准(doc 6页)

System setup/parameter/General 1>Production Execution Picking Z Standby : 从feeder的吸件位置Gantry所移动的高度 ?Modul head设备是20 精密head 设备是15 Placing Z standby : 置件高度一定要输入25.00. Feeder pitch : feeder和feeder之间的距离 ?MRC是16.00 QUAD是16.00 or 23.00 出厂时16.00 SETTING. Auto Pic Size Limit : 执行Pic时为了看见零件的外观而设置的Size Limit ? 5.00 Front Ref.feeder No,Rear Ref.feeder No : Feeder的基准号码 => 开始时Front是23号feeder , Rear是73号feeder为基准 Part Check Wait Delay : ?30 Belt Mid Time :PWB被LowSpeed Sensor感应之后以中速移动的时间 ?250 ~ 500之间 Belt Stop Delay : PWB被Setposition Sensor感应之后以低速移动的时间 ?250 ~ 500之间 Pusher down delay : PWB出来时Pusher下降之后过规定的时间后驱动Belt. ?100 Auto PIC Delay : Pic Auto执行时一Step之间停止的时间 ?500 1>In Position On Picking : 吸件时Motion终了的Position Limit On VA : 检查零件时Motion终了的Position Limit On Placement : 置件时Motion终了的Position Limit => On Picking : XY=0.5 R=1.0 Z=0.3 Z On Up=1.5 => On V A : XY= 0.03 R=0.3 Z=0.2 XY on Offset M.=1.0 => On placement : XY=0.05 R=0.3 Z=0.2 Z on Up=1.0 Place Z Offset=0.3 <注为了提高精密度可以变更On Placement的XY= 0.02 ~ 0.05 R=0.2 ~ 0.5.> 2>Setting Pulse : 目前不使用. 3>Others Collision Limit : 只有在10Series有效front,Rear的最小安全间距 ?目前MPS-1010是75.00 MPS-1010P是100.00.

【经济类文献翻译】电子商务

电子商务 电子商务(Electronic Commerce)是在Internet开放的网络环境下,基于浏览器/服务器应用方式,实现消费者的网上购物、商户之间的网上交易和在线电子支付的一种新型的商业运营模式 Internet上的电子商务可以分为三个方面:信息服务、交易和支付。主要内容包括:电子商情广告;电子选购和交易、电子交易凭证的交换;电子支付与结算以及售后的网上服务等。主要交易类型有企业与个人的交易(BtoC方式)和企业之间的交易(BtoB方式)两种。参与电子商务的实体有四类:顾客(个人消费者或企业集团)、商户(包括销售商、制造商、储运商)、银行(包括发卡行、收单行)及认证中心。 电子商务是Internet爆炸式发展的直接产物,是网络技术应用的全新发展方向。Internet本身所具有的开放性、全球性、低成本、高效率的特点,也成为电子商务的内在特征,并使得电子商务大大超越了作为一种新的贸易形式所具有的价值,它不仅会改变企业本身的生产、经营、管理活动,而且将影响到整个社会的经济运行与结构。 1.电子商务将传统的商务流程电子化、数字化,一方面以电子流代替了实物流,可以大量减少人力、物力,降低了成本;另一方面突破了时间和空间的限制,使得交易活动可以在任何时间、任何地点进行,从而大大提高了效率。 2.电子商务所具有的开放性和全球性的特点,为企业创造了更多的贸易机会。 3.电子商务使企业可以以相近的成本进入全球电子化市场,使得中小企业有可能拥有和大企业一样的信息资源,提高了中小企业的竞争能力。 4.电子商务重新定义了传统的流通模式,减少了中间环节,使得生产者和消费者的直接交易成为可能,从而在一定程度上改变了整个社会经济运行的方式。 5.电子商务一方面破除了时空的壁垒,另一方面又提供了丰富的信息资源,

冲压模具专业词汇中英文翻译

Counter bored hole 沉孔 Chamfer 倒斜角 Fillet 倒圆角 padding block垫块 stepping bar垫条 upper die base上模座 lower die base下模座 upper supporting blank上承板 upper padding plate blank上垫板 spare dies模具备品 spring 弹簧 bolt螺栓 document folder活页夹 file folder资料夹 to put file in order整理资料 spare tools location手工备品仓 first count初盘人 first check初盘复棹人 second count 复盘人 second check复盘复核人 equipment设备 waste materials废料 work in progress product在制品 casing = containerization装箱 quantity of physical inventory second count 复盘点数量 Quantity of customs count 会计师盘,点数量 the first page第一联 filed by accounting department for reference会计部存查 end-user/using unit(department)使用单位 Summary of year-end physical inventory bills 年终盘点截止单据汇总表 bill name单据名称 This sheet and physical inventory list will be sent to accounting department together (Those of NHK will be sent to financial department) 本表请与盘点清册一起送会计部-(NHK厂区送财会部) Application status records of year-end physical inventory List and physical inventory card 年终盘点卡与清册使用-状况明细表 blank and waste sheet NO. 空白与作废单号

移动公司短信系统参数配置原则

短信系统参数配置原则 (初稿) 四川移动通信责任有限公司 2003年六月

前言 受集团公司委托(移网通[2002]528号《关于委托编写短信系统参数配置原则的通知》),四川移动通信有限责任公司负责制定短信系统参数配置原则。为此公司上下十分重视,立即成立了以网络部副主任刘耕为组长的参数编制小组,对短信系统相关的参数进行了大量的测试和分析,为提高短信各设备间的兼容性和下发成功率以及解决短信中心、短信网关的参数设置不规范,导致省际、省内各级短信设备配合不一致,影响短信业务成功下发的问题,提出了参数配置建议。由于时间和水平有限,《原则》当中难免有考虑不周之处,敬请指正。

目录 第一部分情况简介 (4) 第二部分短信中心参数配置原则 (5) 一、短信中心单个用户最大短信缓存条数(被叫): (5) 二、短信中心单条短信最大保存期限 (8) 三、短信系统重发参数 (11) 1、用户原因的重发机制: (12) 2、网络原因的重发机制。 (14) 四、MSC短消息事件鉴权参数 (20) 五、短信中心接口部分相关参数: (23) 第三部分短信网关参数配置原则 (24) 一、与短信中心接口 (24) 二、与SP接口 (27) 三、与SCP的接口 (28) 四、与其他ISMG的接口 (29)

第一部分情况简介 (一)编写小组成员 组长:刘耕 副组长:杨书其白庆王耀阳 组员:刘晟、林勇、林静、曾智、侯漫秋、涂越秋 厂家:张美军(华为)钟智(康维)李邦建(亚信) (二)本省短信及相关网络设备情况 点对点短信中心:华为(软件版本 v280r001.5d611),容量300万BHSM 梦网短信中心:康维(软件版本 2.5.27),容量300万BHSM 短信网关:亚信(软件版本 2.5.1), 容量288万BHSM SCP:东信北邮(4.04) MSC:西门子(sr9.0) HLR:西门子(sr9.0)

电子商务企业文化中英文对照外文翻译文献

中英文对照外文翻译文 电子商务时代企业文化的再造 随着网络时代电子商务大规模发展,电子商务企业文化随之产生,它在一个企业在产生的一种新的价值观,使企业内部资源得到从新整合,在为企业带来降低交易成本,提高效率,缩短生产周期等诸多好处的同时,也对已有的企业文化发起了挑战。电子商务的兴起是一场由技术手段飞速发展而引发的商业运作模式的变革,传统经济活动的生存基础、运作方式和管理机制均发生了彻底改变,传统的企业文化也面临着巨大的冲击。 一、企业文化对企业价值的贡献 文化现象是一个国家和民族文明的主要见证。广义的文化,包括知识、信仰、艺术、道德、法律、习俗和任何人作为一名社会成员而获得的能力和习惯在内的复杂整体。作为“亚文化”的企业文化,对企业的生存与发展亦起着举足轻重的作用。企业文化是商品经济和市场经济的产物,符合市场经济的客观规律,体现企业的竞争实务、竞争精神和整体形象。所谓企业文化就是企业的经营管理哲学,企业面对所处的社会和商业环境,在长期的生产经营活动中,形成全体员工所接受和认同信守的、为争取事业成功的一套非正式规则。它表明企业奉行何种管理哲学,以及企业通过管理要达到一个什么样的目标。是经济管理的重要内容之一。企业文化意味着一个公司的价值观,而这些价值观成为公司员工活动和行为的规范。 企业文化的本源问题是如何增加企业利润,降低企业的成本和费用。它的要义就是怎么使企业能够有效的整合资源,以达到对外部的适应性,使公司在竞争中生存,进而实现持续发展。企业文化建设为企业开展文化管理指出一个明确的方向。企业文化建设的根本目的是建设能够对外竞争环境具有高度适应性,并能根据环境变换做出迅速反应的行为方式能力,这种能力其实就是企业所拥有的根据外部竞争的环境需要而对内部资源进行整合运用的能力。企业文化建设应促进这一能力系统的形成,并维持好这一能力系统。中国的许多企业例如海尔、联想等企业成功的秘诀之一就是发展了一整套公司理念、经营哲学,形成了自己独特的企业文化。 1、企业文化体现企业的形象和精神。树立良好的企业形象,需要企业文化的支撑。现

机械术语英文翻译

机械术语英文翻译 阿基米德蜗杆Archimedes worm 安全系数safety factor; factor of safety安全载荷safe load 凹面、凹度concavity扳手wrench 板簧flat leaf spring 半圆键woodruff key 变形deformation摆杆oscillating bar 摆动从动件oscillating follower 摆动从动件凸轮机构cam with oscillating follower 摆动导杆机构oscillating guide-bar mechanism 摆线齿轮cycloidal gear摆线齿形cycloidal tooth profile 摆线运动规律cycloidal motion 摆线针轮cycloidal-pin wheel包角angle of contact 保持架cage背对背安装丨back-to-back arrangement 背锥back cone ;normal cone 背锥角back angle背锥距back cone distance比例尺scale 热容specific heat capacity 闭式链closed kinematic chain闭链机构closed chain mechanism 臂部arm 变频器frequency converters变频调速frequency control of motor speed 变速speed change 变速齿轮change gear ; change wheel变位齿轮modified gear变位系数modification coefficient 标准齿轮standard gear标准直齿轮standard spur gear 表面质量系数superficial mass factor 表面传热系数surface coefficient of heat transfer 表面粗糙度surface roughness 并联式组合combination in parallel并联机构parallel mechanism 并联组合机构parallel combined mechanism并行工程concurrent engineering 并行设计concurred design, CD不平衡相位phase angle of unbalance 不平衡imbalance (or unbalance)不平衡量amount of unbalance 不完全齿轮机构intermittent gearing波发生器wave generator 波数number of waves补偿compensation 参数化设计parameterization design, PD残余应力residual stress 操纵及控制装置operation control device槽轮Geneva wheel 槽轮机构Geneva mechanism ;Maltese cross槽数Geneva numerate 槽凸轮groove cam侧隙backlash 差动轮系differential gear train差动螺旋机构differential screw mechanism 差速器differential常用机构conventional mechanism; mechanism in common use 车床lathe承载量系数bearing capacity factor 承载能力bearing capacity成对安装paired mounting 尺寸系列dimension series齿槽tooth space 齿槽宽spacewidth齿侧间隙backlash 齿顶高addendum齿顶圆addendum circle 齿根高dedendum齿根圆dedendum circle 齿厚tooth thickness齿距circular pitch 齿宽face width齿廓tooth profile 齿廓曲线tooth curve齿轮gear 齿轮变速箱speed-changing gear boxes齿轮齿条机构pinion and rack 齿轮插刀pinion cutter; pinion-shaped shaper cutter齿轮滚刀hob ,hobbing cutter 齿轮机构gear齿轮轮坯blank 齿轮传动系pinion unit齿轮联轴器gear coupling 齿条传动rack gear齿数tooth number 齿数比gear ratio齿条rack 齿条插刀rack cutter; rack-shaped shaper cutter齿形链、无声链silent chain 齿形系数form factor齿式棘轮机构tooth ratchet mechanism 插齿机gear shaper重合点coincident points 重合度contact ratio冲床punch

SAP系统配置参数详解

SAP系统配置参数详解 SAP 系统参数设置 path: /usr/sap/PRD/SYS/profile profile: PRD_DVEBMGS00_sapapp 如果您想查看所有的参数及当前设定,可使用SA38 执行程序 RSPARAM 修改附加配置 T-CODE:RZ10 进行SAP系统参数的设置,设置后需激活参数并重启SAP实例,配置参数才会生效login/system_client 登录时默认的Client号 login/password_expiration_time 密码有效期 login/fails_to_user_lock 密码输错多少次后锁定 login/failed_user_auto_unlock 用户失效后多长时间解锁 rdisp/mshost 状态栏中显示的系统名称 rdisp/rfc_use_quotas 是否激活配额资源分配,0是关闭,1是启用.以下相关限制必须这个为1时才生效. rdisp/gui_auto_logout 表示如果客户在指定时间内没有进行任何操作,则会自动退出SAP系统。时间为秒 rdisp/max_wprun_time 程序运行的最长时间限制 rdisp/rfc_max_login 最大SAP用户登录数 login/disable_multi_gui_login 限制用户多次登录,该参数可以设置同个client 同个用户ID可以允许同时登录几个,当设为1时,系统将提示用户选择: 'Terminate the Current Sessions' or 'Terminate this Login.' ,以达到保证只允许一个登录. rdisp/tm_max_no 这个参数是限制每个实例最大的用户数,默认是200个. rdisp/rfc_max_own_login 一个程序在一个服务器上允许分配的RFC资源个数,也就是同时能运行多少个.默认值25. rdisp/rfc_min_wait_dia_wp 设置RFC保留的会话设置, rdisp/wp_no_dia 在一个实例中处理的会话数目,如果设置为10,rdisp/rfc_min_wait_dia_wp=3则可用的会话处理是7,3个被保留 rdisp/rfc_max_own_used_wp rdisp/rfc_max_comm_entries rdisp/rfc_max_wait_time rdisp/btctime

电子信息工程文献专业英语中英互译

? . , . ? , a , a . , . ( ). a ( ). A . A . , , . : A " " . : a " " , a " " . "" . a 's . a " " 's . " " . ( ). . : a "" 's ; a "" a ; a "" . a , . a . 's , . a , a . , . A . , a . , , . Europe's a , a . a , ., . "'s a ," , , . " 's . 2002 . a ." , (), Toyota's 's 1, . 2010, a . . 2 , . , 's , . . , a Delphi , a a . " , , , ," . " ." Delphi '99. : , . . , . . " ," . , , Germany. "'s ." "

a ," , , , . a ( , , , ). . . , , a . $50 . Birmingham, England, 2000. 1995, Delphi, 7596 . 37 10 , . a . , a a , a , a , a a a . a a , a . , , . , , , . a , , , . , , a . : . . 电子动力转向系统 电子动力转向系统是什么? 电子动力转向系统是通过一个电动机来驱动动力方向盘液压泵或直接驱动转向联动装置。电子动力转向的功能由于不依赖于发动机转速,所以能节省能源电子动力转向系统是怎么运行?: 传统的动力方向盘系统使用一条引擎辅助传送带驾驶气泵,提供操作在动力方向盘齿轮或作动器的一个活塞协助驱动的被加压的流体。在电动液压的控制,一个电子动力方向盘包括一台电动机控制的一个高效率泵浦。由一个电控制器调控泵浦压力和流速来控制泵浦的速度,为不同的驾驶路况的提供转向。泵浦可以在汽车行驶低速时关闭以提供节能(在当代的世界市场上)。 电动控制转向使用电动机通过齿轮齿条机构直接连接以达到转向控制(无泵或液体)。多个电机驱动器和多驱动控制的实现是可能的。一个微处理器控制转向动态和驱动的工作。输入因子包括车速,转向,车轮扭矩,角度位置和转率。

机械专业相关词汇中英文翻译大全

机械专业相关词汇中英文翻译大全 单价unit price 工日合计Man-day total/work-day total 人工费cost of labor 材料费materials expenses 机械的mechanical 检查接线connection test 发电机generator 调相机phase regulator 周波cycle 减负荷装置 load-shedding equipment 断路器柜circuit breaker cabinet 单母线single busbar 互感器transformer 每相电流Current by Phase 封闭式插接close type socket joint 发电机控制面板generator control panel 分级卸载sorted unloading 同步控制synchronization control 调速器 speed governor 信号屏signal screen 继电器relay 高压柜high pressure cabinet 油浸电力变压器oil-immersed power transformer 空气断路器air circuit breaker 控制屏control panel 直流馈电屏direct current feed control panel 电容器electric condenser 计量盘metering panel 成套配电箱whole set of distribution box 落地式floor model 控制开关Control switches 铜芯电力电缆Copper core power cable 控制电缆actuating cable 热缩式电力电缆终端头pyrocondensation power cable terminal 钢结构支架配管steel structure bracket tubing 万用槽钢versatile U-steel 电缆托架 cable bracket 钢制托盘式桥架steel Tray-type cable support system waterproof socket 防水插座 防爆插座Explosion-proof socket 接地绞线earthing twisted pair 接地母线 earthing bus

电子商务 外文翻译

B2B e-marketplace: an e-marketing framework for B2B commerce Purpose–The purpose of this paper is to provide a clear understanding of the performance of business-to-business (B2B) e-marketplace in conducting e-marketing in the global business environment. The proposed framework is intended to be used as a guide for B2B firms especially small and medium sized enterprises (SMEs) who wish to adopt a proactive approach in the use of information and communication technology for business efficiency and competitive advantage, and those who wish to explore the internet technologies for marketing activities. Design/methodology/approach– Literature from the B2B e-marketplaces and operations of e-marketing fields were analysed, and the findings were synthesised to develop a preliminary conceptual model of e-marketing. The conceptual model was tested empirically through an online survey from various industries in China, Malaysia, and Singapore. Findings– With significant online and offline publications from both academia and industry, there is a growing awareness of the contribution of the e-marketing in the global environment. This new marketing paradigm is reported to reshape the business relationships between both consumer marketers and consumers, improving business processes and enhancing the business exposure in the new markets. Research limitations /implications– The major limitation of this paper is associated with the sample selection. Although the literature findings were international, the empirical study was restricted to China, Malaysia, and Singapore. Therefore, the generalizability of the results may not be applicable for other countries. Furthermore, the majority of the respondents participated were SMEs. Hence, the applicability of findings to large-scale organisations may be limited. Practical implications–The framework allows B2B firms to capitalise and understand the e-marketing opportunities provided by B2B e-marketplace. The framework also offers guidance to marketing managers a most appropriate approach to adopt B2B e-marketplace to perform their e-marketing activities. Originality/value– Based on the need for a framework for e-marketing, this study is significance to: SMEs, marketers, information technology practitioners, and all other stakeholders that adopted the internet and other electronic means for marketing purposes. Background The development of the internet and the world wide web (www) in the 1990s as a tool for the global sharing of information has opened up new opportunities in marketing practices. “The rapid growth of internet users has made the internet an increasingly important and attractive platform for business transactions” According to the Internet World Stats (2007), by March 2008, the internet user population reached 1.40 billions world wide, an increase of 290 percent in the period from 2000 to 2008 (Figure 1). Many academics and practitioners have emphasized that the internet is a major platform for e-marketing to deal with marketing mixes, which include global accessibility (Laudon, 2002), convenience in updating (Sandeep and Singh, 2005), real-time information services (Harridge-March, 2004), interactive communications features (Chaffey, 2004), and unique customisation and personalised capabilities (Teo and Tan, 2002). Additionally, e-marketing also refers to the use of electronic methods or media to build upon and maintain customer relationship through electronic platforms (e.g. business-to-business (B2B) e-marketplaces) that facilitates the exchange of ideas, products, and services to satisfy both buyers and sellers. Strauss and Frost (2001) support the above statement and suggested that, sales, public relations, direct marketing, and advertising are marketing communication that comprises the crucial components of e-marketing strategy. B2B e-marketplace, as one of the major trading platforms brought by the internet technology has made a significant contribution to the e-marketers. The larger organisations are taking advantages from the vast array of suppliers/buyers via the B2B e-marketplace (Stockdale and Standing, 2004). However, small and medium sized enterprises (SMEs) are also eager to compete in the electronic environment remain concerns as how their

中英文文献以及翻译(化工类)

Foreign material: Chemical Industry 1.Origins of the Chemical Industry Although the use of chemicals dates back to the ancient civilizations, the evolution of what we know as the modern chemical industry started much more recently. It may be considered to have begun during the Industrial Revolution, about 1800, and developed to provide chemicals roe use by other industries. Examples are alkali for soapmaking, bleaching powder for cotton, and silica and sodium carbonate for glassmaking. It will be noted that these are all inorganic chemicals. The organic chemicals industry started in the 1860s with the exploitation of William Henry Perkin’s discovery if the first synthetic dyestuff—mauve. At the start of the twentieth century the emphasis on research on the applied aspects of chemistry in Germany had paid off handsomely, and by 1914 had resulted in the German chemical industry having 75% of the world market in chemicals. This was based on the discovery of new dyestuffs plus the development of both the contact process for sulphuric acid and the Haber process for ammonia. The later required a major technological breakthrough that of being able to carry out chemical reactions under conditions of very high pressure for the first time. The experience gained with this was to stand Germany in good stead, particularly with the rapidly increased demand for nitrogen-based compounds (ammonium salts for fertilizers and nitric acid for explosives manufacture) with the outbreak of world warⅠin 1914. This initiated profound changes which continued during the inter-war years (1918-1939). Since 1940 the chemical industry has grown at a remarkable rate, although this has slowed significantly in recent years. The lion’s share of this growth has been in the organic chemicals sector due to the development and growth of the petrochemicals area since 1950s. The explosives growth in petrochemicals in the 1960s and 1970s was largely due to the enormous increase in demand for synthetic polymers such as polyethylene, polypropylene, nylon, polyesters and epoxy resins. The chemical industry today is a very diverse sector of manufacturing industry, within which it plays a central role. It makes thousands of different chemicals which

机械专业术语英文翻译

机械专业英语词汇 陶瓷ceramics 合成纤维synthetic fibre 电化学腐蚀electrochemical corrosion 车架automotive chassis 悬架suspension 转向器redirector 变速器speed changer 板料冲压sheet metal parts 孔加工spot facing machining 车间workshop 工程技术人员engineer 气动夹紧pneuma lock 数学模型mathematical model 画法几何descriptive geometry 机械制图Mechanical drawing 投影projection 视图view 剖视图profile chart 标准件standard component 零件图part drawing 装配图assembly drawing 尺寸标注size marking 技术要求technical requirements 刚度rigidity 内力internal force 位移displacement 截面section 疲劳极限fatigue limit 断裂fracture 塑性变形plastic distortion 脆性材料brittleness material 刚度准则rigidity criterion 垫圈washer 垫片spacer 直齿圆柱齿轮straight toothed spur gear 斜齿圆柱齿轮helical-spur gear 直齿锥齿轮straight bevel gear 运动简图kinematic sketch 齿轮齿条pinion and rack 蜗杆蜗轮worm and worm gear 虚约束passive constraint 曲柄crank

文献翻译----电子商务中英文对照

外文文献及译文 文献、资料题目:Electronic Commerce 外文文献: Electronic Commerce Electronic commerce, or Electronic trade, or electronic business as a newly rising mode of commerce will have far-reaching influence on social economy and play an important role in social development worldwide. It represents the trend of world trade in the 21st century and beyond. 1. What is Electronic Commerce? Electronic commerce refers to commercial data exchange in digital form through electronic transmission means and commercial activities conducted on-line. Usually, electronic commerce can be divided into two levels: One is low-level electronic commerce that is, electronic commercial intelligence, electronic trade, and electronic contracts. Another is high-level electronic commerce which includes all commercial activities done via Internet, ranging from searching for clients, commercial negotia-tion, making orders, on-line payment, releasing electronic invoice, to electronic dec-laration to Customs, electronic tax-payment, all conducted on Internet. Electronic commerce means electrification of all trade transactions. It is featured by these characters: ①fairness and freedom, ②high efficiency, ③globalization, ④virtualization, ⑤interactivity, ⑥autonomy, ⑦personalized service. With electronic commerce, clients and

相关文档
最新文档