??xml version="1.0" encoding="utf-8" standalone="yes"?>国产一区二区三区免费视频,久久蜜桃香蕉精品一区二区三区,日本不卡高清视频http://www.aygfsteel.com/wiflish/category/11013.htmlLoving Life! Loving Coding!zh-cnFri, 14 Mar 2008 12:17:29 GMTFri, 14 Mar 2008 12:17:29 GMT60weblogicW记http://www.aygfsteel.com/wiflish/archive/2008/03/14/186237.html想飞的鱼想飞的鱼Fri, 14 Mar 2008 03:48:00 GMThttp://www.aygfsteel.com/wiflish/archive/2008/03/14/186237.htmlhttp://www.aygfsteel.com/wiflish/comments/186237.htmlhttp://www.aygfsteel.com/wiflish/archive/2008/03/14/186237.html#Feedback0http://www.aygfsteel.com/wiflish/comments/commentRss/186237.htmlhttp://www.aygfsteel.com/wiflish/services/trackbacks/186237.html 域包含一个称为“管理服务器”的Ҏ WebLogic Server 实例Q它是您配置和管理域中所有资源的中心点,一个域有仅只有一个管理服务器实例?br /> 在生产环境中Q应?Web 应用E序、EJB 和其他资源部|到受管服务器上Q管理服务器只应用于配置和管理目的?br /> 多台受管服务器可以组成一个“群集”,q样可以使用单个理服务器来化对受管服务器实例的理Q现时还可以q负蝲qؓ关键应用E序提供故障转移保护?br /> l织域的基本考虑因素Q?br /> a) 应用E序的逻辑划分。例如,可以用一个域来专门提供最l用户功能(例如购物车)Q而将另一个域专用于后端胦务应用程序?br /> b) 物理位置。可以ؓ企业的不同位|或分支建立单独的域?br /> c) 大小。您可能发现Q将域组l成较小的单元可提高理效率Q可以由不同的系l管理员q行理。相反,您可能发现维护一个域或较数目的域可以ɾl护一致性配|变得更Ҏ?br /> 启动受管服务器的ҎQ?br />1、在weblogic的当前域目录中用命令:startManagedWebLogic [SERVER_NAME] [ADMIN_URL] SERVER_NAME - 待启动的域中的受服务器名字(大小写敏? ADMIN_URL - 理服务器地址包含端口?br /> 如:startManagedWebLogic testManagedServer http://localhost:7001 2、在weblogic的控制台界面启动Q操作: 选择要启动的受管服务器,选择"控制"->"启动停止"->"启动此服?. 此时受管服务器启动失败,会出现类似如下错误信息: 描述: Starting DemoManagedServer server ... 此Q务的说明? 状? FAILED 此Q务的状态? 开始时? Fri Mar 14 11:14:13 CST 2008 启动此Q务的旉? l束旉: Fri Mar 14 11:14:14 CST 2008 完成此Q务的旉? 异常: SecureCommandInvoker: Could not create a socket to the NodeManager running on host 'localhost:5555' to execute command 'online DemoManagedServer', reason: Connection refused: connect. Ensure that the NodeManager on host 'localhost' is configured to listen on port '5555' and that it is actively listening 在执行此d时出现的异常? 日志: dzd的日志?
解决办法Q?br /> Solution 1: To make a managed server start, we need to start the node manager on that machine. You can find the script to start the server in WLS_HOME\server\bin\startNodeManager.cmd or sh.
The order in which we need to start the servers are 1.Start the node manager 2.Start the Admin server 3.Start the specific managed server we need to start.
Solution 2: Have you set up a "Machine" for each of the managed servers ?
You need to do that (extremely simple: Machines --> Config. New (Unix) Machine ), and then under your new machine, configure the listen address under Nodemanager Tab, with the IP of the machine running the ManagedServer.
The problem seems to be with the adress which the N.M. listens: if you telnet localhost 5555, you'll get nothing ("conn refused"), but if you telnet X.X.X.X 5555, you'll get the prompt for the NM ( "Escape character is ]" )
So, if you dont configure the managed server to speak with the nodemanager via real ip address instead of localhost (127.0.0.1), you get nothing.
]]>javascript Regular Expression.http://www.aygfsteel.com/wiflish/archive/2007/08/17/137648.html想飞的鱼想飞的鱼Fri, 17 Aug 2007 09:15:00 GMThttp://www.aygfsteel.com/wiflish/archive/2007/08/17/137648.htmlhttp://www.aygfsteel.com/wiflish/comments/137648.htmlhttp://www.aygfsteel.com/wiflish/archive/2007/08/17/137648.html#Feedback0http://www.aygfsteel.com/wiflish/comments/commentRss/137648.htmlhttp://www.aygfsteel.com/wiflish/services/trackbacks/137648.htmlhttp://developer.mozilla.org/en/docs/Core_JavaScript_1.5_Reference:Global_Objects:RegExp
1、创建方法: var regExp = /pattern/flags. or var regExp = new RegExp("pattern"[, "flags"]);
flags取? g - global matchQ?i - ignore case, m - match over multiple lines.
2?span class="mw-headline">Special characters in regular expressions
Character
Meaning
\
For characters that are usually treated literally, indicates that
the next character is special and not to be interpreted literally.
For example, /b/ matches the character 'b'. By placing a backslash in front of b, that is by using /\b/, the character becomes special to mean match a word boundary.
-or-
For characters that are usually treated specially, indicates
that the next character is not special and should be interpreted
literally.
For example, * is a special character that means 0 or more
occurrences of the preceding character should be matched; for example, /a*/ means match 0 or more a's. To match * literally, precede the it with a backslash; for example, /a\*/ matches 'a*'.
^
Matches beginning of input. If the multiline flag is set to true, also matches immediately after a line break character.
For example, /^A/ does not match the 'A' in "an A", but does match the first 'A' in "An A."
$
Matches end of input. If the multiline flag is set to true, also matches immediately before a line break character.
For example, /t$/ does not match the 't' in "eater", but does match it in "eat".
*
Matches the preceding item 0 or more times.
For example, /bo*/ matches 'boooo' in "A ghost booooed" and 'b' in "A bird warbled", but nothing in "A goat grunted".
+
Matches the preceding item 1 or more times. Equivalent to {1,}.
For example, /a+/ matches the 'a' in "candy" and all the a's in "caaaaaaandy".
?
Matches the preceding item 0 or 1 time.
For example, /e?le?/ matches the 'el' in "angel" and the 'le' in "angle."
If used immediately after any of the quantifiers *, +, ?, or {},
makes the quantifier non-greedy (matching the minimum number of times),
as opposed to the default, which is greedy (matching the maximum number
of times).
Also used in lookahead assertions, described under (?=), (?!), and (?:) in this table.
.
(The decimal point) matches any single character except the newline characters: \n \r \u2028 or \u2029.
For example, /.n/ matches 'an' and 'on' in "nay, an apple is on the tree", but not 'nay'.
(x)
Matches x and remembers the match. These are called capturing parentheses.
For example, /(foo)/ matches and remembers 'foo' in "foo bar." The matched substring can be recalled from the resulting array's elements [1], ..., [n] or from the predefined RegExp object's properties $1, ..., $9.
(?:x)
Matches x but does not remember the match. These
are called non-capturing parentheses. The matched substring can not be
recalled from the resulting array's elements [1], ..., [n] or from the predefined RegExp object's properties $1, ..., $9.
x(?=y)
Matches x only if x is followed by y. For example, /Jack(?=Sprat)/ matches 'Jack' only if it is followed by 'Sprat'. /Jack(?=Sprat|Frost)/
matches 'Jack' only if it is followed by 'Sprat' or 'Frost'. However,
neither 'Sprat' nor 'Frost' is part of the match results.
x(?!y)
Matches x only if x is not followed by y. For example, /\d+(?!\.)/ matches a number only if it is not followed by a decimal point.
/\d+(?!\.)/.exec("3.141") matches 141 but not 3.141.
x|y
Matches either x or y.
For example, /green|red/ matches 'green' in "green apple" and 'red' in "red apple."
{n}
Where n is a positive integer. Matches exactly n occurrences of the preceding item.
For example, /a{2}/ doesn't match the 'a' in "candy," but it matches all of the a's in "caandy," and the first two a's in "caaandy."
{n,}
Where n is a positive integer. Matches at least n occurrences of the preceding item.
For example, /a{2,} doesn't match the 'a' in "candy", but matches all of the a's in "caandy" and in "caaaaaaandy."
{n,m}
Where n and m are positive integers. Matches at least n and at most m occurrences of the preceding item.
For example, /a{1,3}/ matches nothing in "cndy",
the 'a' in "candy," the first two a's in "caandy," and the first three
a's in "caaaaaaandy". Notice that when matching "caaaaaaandy", the
match is "aaa", even though the original string had more a's in it.
[xyz]
A character set. Matches any one of the enclosed characters. You can specify a range of characters by using a hyphen.
For example, [abcd] is the same as [a-d]. They match the 'b' in "brisket" and the 'c' in "ache".
[^xyz]
A negated or complemented character set. That is, it matches
anything that is not enclosed in the brackets. You can specify a range
of characters by using a hyphen.
For example, [^abc] is the same as [^a-c]. They initially match 'r' in "brisket" and 'h' in "chop."
[\b]
Matches a backspace. (Not to be confused with \b.)
\b
Matches a word boundary, such as a space. (Not to be confused with [\b].)
For example, /\bn\w/ matches the 'no' in "noonday"; /\wy\b/ matches the 'ly' in "possibly yesterday."
\B
Matches a non-word boundary.
For example, /\w\Bn/ matches 'on' in "noonday", and /y\B\w/ matches 'ye' in "possibly yesterday."
\cX
Where X is a letter from A - Z. Matches a control character in a string.
For example, /\cM/ matches control-M in a string.
\d
Matches a digit character from any alphabet. Use [0-9] to match only Basic Latin alphabet digits.
For example, /\d/ or /[0-9]/ matches '2' in "B2 is the suite number."
\D
Matches any non-digit character (all alphabets). [^0-9] is the Basic Latin alphabet equivalent of \D
For example, /\D/ or /[^0-9]/ matches 'B' in "B2 is the suite number."
\f
Matches a form-feed.
\n
Matches a linefeed.
\r
Matches a carriage return.
\s
Matches a single white space character, including space, tab, form feed, line feed and other unicode spaces.[1]
For example, /\s\w*/ matches ' bar' in "foo bar."
\S
Matches a single character other than white space.[2]
For example, /\S\w*/ matches 'foo' in "foo bar."
\t
Matches a tab.
\v
Matches a vertical tab.
\w
Matches any (Basic Latin alphabet) alphanumeric character including the underscore. Equivalent to [A-Za-z0-9_].
For example, /\w/ matches 'a' in "apple," '5' in "$5.28," and '3' in "3D."
\W
Matches any non-(Basic Latin)word character. Equivalent to [^A-Za-z0-9_].
For example, /\W/ or /[^$A-Za-z0-9_]/ matches '%' in "50%."
\n
Where n is a positive integer. A back reference
to the last substring matching the n parenthetical in the regular
expression (counting left parentheses).
For example, /apple(,)\sorange\1/ matches 'apple, orange,' in "apple, orange, cherry, peach." A more complete example follows this table.
\0
Matches a NUL character. Do not follow this with another digit.
\xhh
Matches the character with the code hh (two hexadecimal digits)
You can use any valid java.text.MessageFormat pattern in the format attribute. Sorting
will be based on the original object, not on the formatted String.
Note that errors due to an invalid pattern/object combination (for example trying to format a String like a number)
will not be rethrown. Instead, an error log will be written and the original unformatted object displayed.
You can also use a format pattern along with column decorators (the pattern will be applied after the
decoration).
最通用的定义ؓQXmlHttp是一套可以在Javascript、VbScript、Jscript{脚本语a中通过http协议传送或从接收XML及其他数据的一套API。XmlHttp最大的用处是可以更新网늚部分内容而不需要刷新整个页面?br />来自MSDN的解释:XmlHttp提供客户端同http服务器通讯的协议。客L可以通过XmlHttp对象(MSXML2.XMLHTTP.3.0)?http服务器发送请求ƈ使用微YXML文档对象模型Microsoft] XML Document Object Model (DOM)处理回应?
development参数的说明: development Is Jasper used in development mode (will check for JSP modification on every access)? [true] 该参数默认gؓtrueQ即tomcat会对jsp面的每ơ访问都它是否发生了修改;该参数讄为false后,也就是说tomcat不以开发模式运行,即不再检jsp是否发生了修改,q样能提高运行效率?br />如果pȝq行后,偶尔Ҏ个jsp面q行了修改,只要删除该jsp面?CATALINA_HOME%/work目录中对应的servlet源文件和class文gQ再讉K该jsp面后,tomcat(jsp引擎)׃重新~译该jsp文g?br />
]]>Google Web Toolkithttp://www.aygfsteel.com/wiflish/archive/2006/05/22/47455.html想飞的鱼想飞的鱼Mon, 22 May 2006 06:12:00 GMThttp://www.aygfsteel.com/wiflish/archive/2006/05/22/47455.htmlhttp://www.aygfsteel.com/wiflish/comments/47455.htmlhttp://www.aygfsteel.com/wiflish/archive/2006/05/22/47455.html#Feedback0http://www.aygfsteel.com/wiflish/comments/commentRss/47455.htmlhttp://www.aygfsteel.com/wiflish/services/trackbacks/47455.htmlGoogle Web Toolkit (GWT) is a Java software development framework that makes writing AJAX applications like Google Maps and Gmail
easy for developers who don't speak browser quirks as a second
language. Writing dynamic web applications today is a tedious and
error-prone process; you spend 90% of your time working around subtle
incompatabilities between web browsers and platforms, and JavaScript's
lack of modularity makes sharing, testing, and reusing AJAX components
difficult and fragile.
GWT lets you avoid many of these headaches while offering your users
the same dynamic, standards-compliant experience. You write your front
end in the Java programming language, and the GWT compiler converts your Java classes to browser-compliant JavaScript and HTML.