??xml version="1.0" encoding="utf-8" standalone="yes"?>粉嫩av国产一区二区三区,激情欧美一区二区三区在线观看 ,国产高清一区http://www.aygfsteel.com/zJun/zJun's Tech Weblogzh-cnMon, 16 Jun 2025 07:50:50 GMTMon, 16 Jun 2025 07:50:50 GMT60MINT 13比较快的国内?/title><link>http://www.aygfsteel.com/zJun/archive/2012/06/05/379967.html</link><dc:creator>zJun's帛罗?/dc:creator><author>zJun's帛罗?/author><pubDate>Mon, 04 Jun 2012 16:55:00 GMT</pubDate><guid>http://www.aygfsteel.com/zJun/archive/2012/06/05/379967.html</guid><wfw:comment>http://www.aygfsteel.com/zJun/comments/379967.html</wfw:comment><comments>http://www.aygfsteel.com/zJun/archive/2012/06/05/379967.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.aygfsteel.com/zJun/comments/commentRss/379967.html</wfw:commentRss><trackback:ping>http://www.aygfsteel.com/zJun/services/trackbacks/379967.html</trackback:ping><description><![CDATA[<a target="_blank">http://ubuntu.dormforce.net/</a><br /><div> <br /> Ubuntu 12.04 Precise Pangolin:<br /> <br /> deb <a target="_blank">http://ubuntu.uestc.edu.cn/ubuntu/</a> precise main restricted universe multiverse<br /> deb <a target="_blank">http://ubuntu.uestc.edu.cn/ubuntu/</a> precise-backports main restricted universe multiverse<br /> deb <a target="_blank">http://ubuntu.uestc.edu.cn/ubuntu/</a> precise-proposed main restricted universe multiverse<br /> deb <a target="_blank">http://ubuntu.uestc.edu.cn/ubuntu/</a> precise-security main restricted universe multiverse<br /> deb <a target="_blank">http://ubuntu.uestc.edu.cn/ubuntu/</a> precise-updates main restricted universe multiverse<br /> deb-src <a target="_blank">http://ubuntu.uestc.edu.cn/ubuntu/</a> precise main restricted universe multiverse<br /> deb-src <a target="_blank">http://ubuntu.uestc.edu.cn/ubuntu/</a> precise-backports main restricted universe multiverse<br /> deb-src <a target="_blank">http://ubuntu.uestc.edu.cn/ubuntu/</a> precise-proposed main restricted universe multiverse<br /> deb-src <a target="_blank">http://ubuntu.uestc.edu.cn/ubuntu/</a> precise-security main restricted universe multiverse<br /> deb-src <a target="_blank">http://ubuntu.uestc.edu.cn/ubuntu/</a> precise-updates main restricted universe multiverse</div><br /><div>使用说明<br /> 打开Software ManagerQ点击Edit⇒Software Sources <br /> 在Download from中选择Other <br /> 选择China⇒mirrors.ustc.edu.cn <br /> 点击Choose Server </div><img src ="http://www.aygfsteel.com/zJun/aggbug/379967.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.aygfsteel.com/zJun/" target="_blank">zJun's帛罗?/a> 2012-06-05 00:55 <a href="http://www.aygfsteel.com/zJun/archive/2012/06/05/379967.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>A good plugin in Eclipse/RSA for Swing and SWT UIhttp://www.aygfsteel.com/zJun/archive/2012/05/31/379687.htmlzJun's帛罗?/dc:creator>zJun's帛罗?/author>Thu, 31 May 2012 10:44:00 GMThttp://www.aygfsteel.com/zJun/archive/2012/05/31/379687.htmlhttp://www.aygfsteel.com/zJun/comments/379687.htmlhttp://www.aygfsteel.com/zJun/archive/2012/05/31/379687.html#Feedback0http://www.aygfsteel.com/zJun/comments/commentRss/379687.htmlhttp://www.aygfsteel.com/zJun/services/trackbacks/379687.htmla wonderful Eclipse plugin:  WindowBuilder, which can be used to develope Swing/SWT UI:

WindowBuilder is built as a plug-in to Eclipse and the various Eclipse-based IDEs (RAD, RSA, MyEclipse, JBuilder, etc.). The plug-in builds an abstract syntax tree (AST) to navigate the source code and uses GEF to display and manage the visual presentation.

Develop Java graphical user interfaces in minutes for Swing, SWT, RCP and XWT with WindowBuilder Pro's WYSIWYG, drag-and-drop interface. Use wizards, editors and intelligent layout assist to automatically generate clean Java code, with the visual design and source always in sync.

The project website: http://www.eclipse.org/windowbuilder/

To install the plugin in Eclipse: http://www.eclipse.org/windowbuilder/download.php



]]>
Find duplicate records in text filehttp://www.aygfsteel.com/zJun/archive/2012/04/11/373784.htmlzJun's帛罗?/dc:creator>zJun's帛罗?/author>Wed, 11 Apr 2012 04:10:00 GMThttp://www.aygfsteel.com/zJun/archive/2012/04/11/373784.htmlhttp://www.aygfsteel.com/zJun/comments/373784.htmlhttp://www.aygfsteel.com/zJun/archive/2012/04/11/373784.html#Feedback0http://www.aygfsteel.com/zJun/comments/commentRss/373784.htmlhttp://www.aygfsteel.com/zJun/services/trackbacks/373784.htmlExample:
abc 1000 3452 2463 2343 2176 7654 3452 8765 5643 3452
abc 1000 3452 2463 2343 2176 7654 3452 8765 5643 3452
tas 3420 3562 2123 1343 2176 7654 3252 8765 5643 3452
aer 1000 3452 2463 2343 2176 7654 3452 8765 5643 3452
tas 3420 3562 2123 1343 2176 7654 3252 8765 5643 3452
UNIX:

display the no of occurance and the record
> sort f1.txt|uniq -c
   2 abc 1000 3452 2463 2343 2176 7654 3452 8765 5643 3452
   1 aer 1000 3452 2463 2343 2176 7654 3452 8765 5643 3452
   2 tas 3420 3562 2123 1343 2176 7654 3252 8765 5643 3452

display only the duplicate records
> sort f1.txt|uniq -d
abc 1000 3452 2463 2343 2176 7654 3452 8765 5643 3452
tas 3420 3562 2123 1343 2176 7654 3252 8765 5643 3452

display distinct records
> sort f1.txt|uniq
abc 1000 3452 2463 2343 2176 7654 3452 8765 5643 3452
aer 1000 3452 2463 2343 2176 7654 3452 8765 5643 3452
tas 3420 3562 2123 1343 2176 7654 3252 8765 5643 3452

Reference:
Shell: How To Remove Duplicate Text Lines

Windows:

Notepad++ can sort by line, and remove the duplicate lines at the same time.
  1. Open the menu under: TextFX-->TextFX Tools
  2. Make sure "sort outputs only unique..." is checked
  3. select a block of text (ctrl-a to select the entire document).
  4. click "sort lines case sensitive" or "sort lines case insensitive"



]]>
Unbuntu 安装 Tomcathttp://www.aygfsteel.com/zJun/archive/2012/03/28/372865.htmlzJun's帛罗?/dc:creator>zJun's帛罗?/author>Tue, 27 Mar 2012 17:18:00 GMThttp://www.aygfsteel.com/zJun/archive/2012/03/28/372865.htmlhttp://www.aygfsteel.com/zJun/comments/372865.htmlhttp://www.aygfsteel.com/zJun/archive/2012/03/28/372865.html#Feedback0http://www.aygfsteel.com/zJun/comments/commentRss/372865.htmlhttp://www.aygfsteel.com/zJun/services/trackbacks/372865.html1.安装JAVA环境

sudo apt-get install sun-java5-jre

2.下蝲tomcatQ?http://tomcat.apache.org/

3.解压tomcat

$sudo tar zxvf apache-tomcat-7.0.26.tar.gz -C /opt
$sudo mv /opt/apache-tomcat-7.0.26.tar.gz /opt/tomcat

4.启动tomcat

$sudo /opt/tomcat/bin/startup.sh

如果能看C列提C,p明启动成功了Q?/p>

>Using CATALINA_BASE: /opt/tomcat
>Using CATALINA_HOME: /opt/tomcat
>Using CATALINA_TMPDIR: /opt/tomcat/temp
>Using JRE_HOME: /usr/lib/j2sdk1.5-sun

打开FirefoxQ在地址栏中输入http://localhost:8080Q如果出来Tomcat的缺省界面,说明试通过Q?/p>

5.停止Tomcat服务

$sudo /opt/tomcat/bin/shutdown.sh



]]>
Windows下安?Railshttp://www.aygfsteel.com/zJun/archive/2012/03/27/372838.htmlzJun's帛罗?/dc:creator>zJun's帛罗?/author>Tue, 27 Mar 2012 10:30:00 GMThttp://www.aygfsteel.com/zJun/archive/2012/03/27/372838.htmlhttp://www.aygfsteel.com/zJun/comments/372838.htmlhttp://www.aygfsteel.com/zJun/archive/2012/03/27/372838.html#Feedback0http://www.aygfsteel.com/zJun/comments/commentRss/372838.htmlhttp://www.aygfsteel.com/zJun/services/trackbacks/372838.html
2. ?RubyGems 版本Q须高于 1.3.6
gem -v
3.如果版本不是最斎ͼ可以通过下面的命令更新至最新版本:
gem update --system
gem uninstall rubygems-updat?br />
Q?安装 RailsQ?br />
gem install rails


]]>
Eclipse下设|github开发环?/title><link>http://www.aygfsteel.com/zJun/archive/2012/03/27/372752.html</link><dc:creator>zJun's帛罗?/dc:creator><author>zJun's帛罗?/author><pubDate>Mon, 26 Mar 2012 17:16:00 GMT</pubDate><guid>http://www.aygfsteel.com/zJun/archive/2012/03/27/372752.html</guid><wfw:comment>http://www.aygfsteel.com/zJun/comments/372752.html</wfw:comment><comments>http://www.aygfsteel.com/zJun/archive/2012/03/27/372752.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.aygfsteel.com/zJun/comments/commentRss/372752.html</wfw:commentRss><trackback:ping>http://www.aygfsteel.com/zJun/services/trackbacks/372752.html</trackback:ping><description><![CDATA[<div> 1.按照github上的指南配置Q?a >http://help.github.com/win-set-up-git/</a>Q基的git环境?br /> <br /> 2.在github上创Z个Repository?br /> <br /> 3.在Eclipse中通过“Eclipse Marketplaces”Q在Market Places里安装egit?br /> <br /> 4.在Eclipse中生public key, q添加到GitHub Repository中?br /> Eclipse中通过Qperformance -> SSH2 -> Key Management -> Gernerate RSA Key 生成 SSH ?public key?br />在GitHub中通过Qedit your profile -> ssh key -> Add SSH Key dSSH Key, 把上面生成的 public key 拯到这里,保存?br /><br />5.Eclipse里File菜单QImportQ即可从git导入刚添加到git的项目了? </div><br />6.修改Qƈ提交。在目上点右键–>team–>commit。commit是commit到本机的git库,而push才是同步到github?img src ="http://www.aygfsteel.com/zJun/aggbug/372752.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.aygfsteel.com/zJun/" target="_blank">zJun's帛罗?/a> 2012-03-27 01:16 <a href="http://www.aygfsteel.com/zJun/archive/2012/03/27/372752.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>Ubuntu 安装 Eclipsehttp://www.aygfsteel.com/zJun/archive/2012/03/27/372751.htmlzJun's帛罗?/dc:creator>zJun's帛罗?/author>Mon, 26 Mar 2012 17:00:00 GMThttp://www.aygfsteel.com/zJun/archive/2012/03/27/372751.htmlhttp://www.aygfsteel.com/zJun/comments/372751.htmlhttp://www.aygfsteel.com/zJun/archive/2012/03/27/372751.html#Feedback0http://www.aygfsteel.com/zJun/comments/commentRss/372751.htmlhttp://www.aygfsteel.com/zJun/services/trackbacks/372751.html 1.下蝲最新版 Eclipse:
官方下蝲Qhttp://www.eclipse.org/downloads/

2.解压下蝲的压~包Q?br />
$sudo tar xvfz eclipse-SDK-3.1.2-linux-gtk.tar.gz -C /opt

q个时候,可以在 /opt 文g夹中看到出现了一个eclipse的文件夹Q双d中的eclipse文g可以运行eclipse了?br />
3.在菜单设|Eclipse选项Q?
$gedit ~/.local/share/applications/eclipse-user.desktop

插入一下内容:
[Desktop Entry]
Comment=Java IDE
Name=Eclipse
Exec=/opt/eclipse/eclipse
Encoding=UTF-8
Terminal=false
Type=Application
Categories=Application;Development;
Icon=/opt/eclipse/icon.xpm



]]>
MySQL修改root密码http://www.aygfsteel.com/zJun/archive/2012/03/17/372111.htmlzJun's帛罗?/dc:creator>zJun's帛罗?/author>Sat, 17 Mar 2012 14:53:00 GMThttp://www.aygfsteel.com/zJun/archive/2012/03/17/372111.htmlhttp://www.aygfsteel.com/zJun/comments/372111.htmlhttp://www.aygfsteel.com/zJun/archive/2012/03/17/372111.html#Feedback0http://www.aygfsteel.com/zJun/comments/commentRss/372111.htmlhttp://www.aygfsteel.com/zJun/services/trackbacks/372111.htmlҎ1Q?用SET PASSWORD命o

  mysql -u root

  mysql> SET PASSWORD FOR 'root'@'localhost' = PASSWORD('newpass');

Ҏ2Q用mysqladmin

  mysqladmin -u root password "newpass"

  如果root已经讄q密码,采用如下Ҏ

  mysqladmin -u root password oldpass "newpass"

Ҏ3Q?用UPDATE直接~辑user?/strong>

  mysql -u root

  mysql> use mysql;

  mysql> UPDATE user SET Password = PASSWORD('newpass') WHERE user = 'root';

  mysql> FLUSH PRIVILEGES;

Ҏ4Q?在丢失root密码的时候,可以q样

  mysqld_safe --skip-grant-tables&

  mysql -u root mysql

  mysql> UPDATE user SET password=PASSWORD("new password") WHERE user='root';

  mysql> FLUSH PRIVILEGES;

---------------------------------------

l测试,Ҏ三修Ҏ功,其他三种Ҏ没有试?/p>

]]>
Eclipse+Tomcat 启动警告 [SetPropertiesRule]http://www.aygfsteel.com/zJun/archive/2012/03/17/372110.htmlzJun's帛罗?/dc:creator>zJun's帛罗?/author>Sat, 17 Mar 2012 14:52:00 GMThttp://www.aygfsteel.com/zJun/archive/2012/03/17/372110.htmlhttp://www.aygfsteel.com/zJun/comments/372110.htmlhttp://www.aygfsteel.com/zJun/archive/2012/03/17/372110.html#Feedback0http://www.aygfsteel.com/zJun/comments/commentRss/372110.htmlhttp://www.aygfsteel.com/zJun/services/trackbacks/372110.html一.问题环境Q?
  Eclipse3.4 + Tomcat6.0.20
?问题现象Q?
  在Eclipse下启动Tomcat6Ӟ控制C有下面警告信?
  警告: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'source' to 'org.eclipse.jst.jee.server:...' did not find a matching property.
?详细解决办法Q?
   1.打开服务器视图:H口 > 昄视图 > 服务?> 服务?
   2.双击服务器列表中的TomcatQ打开“服务器概述”窗?
   3.选中"Publish module contexts to separate XML files"选项?
   提C:如果Tomcat处于启动状态,请先停止Q否则,在保存服务器讄Ӟ提示不能保存?/p>

]]>
Use FindBugs Plugin to generate a reporthttp://www.aygfsteel.com/zJun/archive/2012/03/17/372107.htmlzJun's帛罗?/dc:creator>zJun's帛罗?/author>Sat, 17 Mar 2012 14:46:00 GMThttp://www.aygfsteel.com/zJun/archive/2012/03/17/372107.htmlhttp://www.aygfsteel.com/zJun/comments/372107.htmlhttp://www.aygfsteel.com/zJun/archive/2012/03/17/372107.html#Feedback0http://www.aygfsteel.com/zJun/comments/commentRss/372107.htmlhttp://www.aygfsteel.com/zJun/services/trackbacks/372107.htmlHere is a simple way to generate a analyze report by using FindBugs plugins in RSA:
  • Using FindBugs to scan the code and save the result as XML file
  • the XML report is in a bad format for reading, we can use XSL file to make it easy and clear to read:
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="summary.xsl"?>
  • Use Internet Explore to open the XML report, now we get a report:
Note: FindBugs provided following xsl files for different format:

1、default.xslQ?br>2、fancy.xslQ?br>3、fancy-hist.xslQ?br>4、plain.xslQ?br>5、summary.xslQ?/p>



]]>
Compress and Uncompress in Javahttp://www.aygfsteel.com/zJun/archive/2008/06/03/205669.htmlzJun's帛罗?/dc:creator>zJun's帛罗?/author>Tue, 03 Jun 2008 15:02:00 GMThttp://www.aygfsteel.com/zJun/archive/2008/06/03/205669.htmlhttp://www.aygfsteel.com/zJun/comments/205669.htmlhttp://www.aygfsteel.com/zJun/archive/2008/06/03/205669.html#Feedback1http://www.aygfsteel.com/zJun/comments/commentRss/205669.htmlhttp://www.aygfsteel.com/zJun/services/trackbacks/205669.html1. Compressing a File in the GZIP Format
2. Uncompressing a File in the GZIP Format

ZIP
1. Creating a ZIP File
2. Listing the Contents of a ZIP File
3. Retrieving a Compressed File from a ZIP File   阅读全文

]]>
Eclipse ?JSEclipse 插ghttp://www.aygfsteel.com/zJun/archive/2008/01/29/178386.htmlzJun's帛罗?/dc:creator>zJun's帛罗?/author>Tue, 29 Jan 2008 09:20:00 GMThttp://www.aygfsteel.com/zJun/archive/2008/01/29/178386.htmlhttp://www.aygfsteel.com/zJun/comments/178386.htmlhttp://www.aygfsteel.com/zJun/archive/2008/01/29/178386.html#Feedback1http://www.aygfsteel.com/zJun/comments/commentRss/178386.htmlhttp://www.aygfsteel.com/zJun/services/trackbacks/178386.html阅读全文

]]>
Eclipse的properties插ghttp://www.aygfsteel.com/zJun/archive/2008/01/24/177593.htmlzJun's帛罗?/dc:creator>zJun's帛罗?/author>Thu, 24 Jan 2008 14:41:00 GMThttp://www.aygfsteel.com/zJun/archive/2008/01/24/177593.htmlhttp://www.aygfsteel.com/zJun/comments/177593.htmlhttp://www.aygfsteel.com/zJun/archive/2008/01/24/177593.html#Feedback4http://www.aygfsteel.com/zJun/comments/commentRss/177593.htmlhttp://www.aygfsteel.com/zJun/services/trackbacks/177593.html分n一个不错的~写properties文g的Eclipse插gQpluginQ,有了它我们在~辑一些简体中文、繁体中文等 Unicode文本Ӟ׃必再使用native2ascii~码了。您可以通过Eclipse中的软g升QSoftware UpdateQ安装此插gQ步骤如下:
1、展开Eclipse的Help菜单Q将鼠标UdSoftware Update子项Q在出现的子菜单中点击Find and InstallQ?br />2、在Install/Update对话框中选择Search for new features to installQ点击NextQ?br />3、在Install对话框中点击New Remote SiteQ?br />4、在New Update Site对话框的Name填入“PropEdit”或其它L非空字符Ԍ在URL中填入http://propedit.sourceforge.jp/eclipse/updates/Q?br />5、在Site to include to search列表中,除上一步加入的site外的其它选项LQ点击FinsihQ?br />6、在弹出的Updates对话框中的Select the features to install列表中将所有结ؓ?.1.x”的选项LQ适用于Eclipse 3.2版本的朋友)Q?br />7、点击Finish关闭对话框;
8、在下蝲后,同意安装Q再按提C重启EclipseQ在工具条看到Ş似vi的按钮表C安装成功,插g可用。此ӞEclpise中所有properties文g的文件名前有l色的P的图标作为标识?


]]>
[Eclipse] The type XXX cannot be resolved. It is indirectly referenced from required .class files错误..... http://www.aygfsteel.com/zJun/archive/2007/10/16/153374.htmlzJun's帛罗?/dc:creator>zJun's帛罗?/author>Tue, 16 Oct 2007 12:55:00 GMThttp://www.aygfsteel.com/zJun/archive/2007/10/16/153374.htmlhttp://www.aygfsteel.com/zJun/comments/153374.htmlhttp://www.aygfsteel.com/zJun/archive/2007/10/16/153374.html#Feedback3http://www.aygfsteel.com/zJun/comments/commentRss/153374.htmlhttp://www.aygfsteel.com/zJun/services/trackbacks/153374.html阅读全文

]]>
使用Criteria進行查詢 by 林信?良葛?http://www.aygfsteel.com/zJun/archive/2007/10/11/152076.htmlzJun's帛罗?/dc:creator>zJun's帛罗?/author>Thu, 11 Oct 2007 08:22:00 GMThttp://www.aygfsteel.com/zJun/archive/2007/10/11/152076.htmlhttp://www.aygfsteel.com/zJun/comments/152076.htmlhttp://www.aygfsteel.com/zJun/archive/2007/10/11/152076.html#Feedback0http://www.aygfsteel.com/zJun/comments/commentRss/152076.htmlhttp://www.aygfsteel.com/zJun/services/trackbacks/152076.html
使用Hibernate時,即您不了解SQL的用與撰寫Q也可以使用它所提供的API來進行SQL語句查詢Qorg.hibernate.CriteriaSQL進行裝Q您可以從Java物g的觀點來i合各種查詢條gQ由Hibernate自動為您產生SQL語句Q而不用特別管理SQL與資料n怾的問?nbsp; 阅读全文

]]>
一个最单的定时dQuartz的例?/title><link>http://www.aygfsteel.com/zJun/archive/2007/09/05/142978.html</link><dc:creator>zJun's帛罗?/dc:creator><author>zJun's帛罗?/author><pubDate>Wed, 05 Sep 2007 11:40:00 GMT</pubDate><guid>http://www.aygfsteel.com/zJun/archive/2007/09/05/142978.html</guid><wfw:comment>http://www.aygfsteel.com/zJun/comments/142978.html</wfw:comment><comments>http://www.aygfsteel.com/zJun/archive/2007/09/05/142978.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.aygfsteel.com/zJun/comments/commentRss/142978.html</wfw:commentRss><trackback:ping>http://www.aygfsteel.com/zJun/services/trackbacks/142978.html</trackback:ping><description><![CDATA[ <p> <font face="Arial" size="2">整理? </font> <a > <font face="Arial" size="2">SpringSide中文论坛</font> </a> <br /> <font face="Arial" size="2"> <hr /> </font> </p> <font face="Arial" size="2">实际执行d的Class: <strong>CourseService</strong><br /></font> <div style="BORDER-RIGHT: #cccccc 1px solid; PADDING-RIGHT: 5px; BORDER-TOP: #cccccc 1px solid; PADDING-LEFT: 4px; FONT-SIZE: 13px; PADDING-BOTTOM: 4px; BORDER-LEFT: #cccccc 1px solid; WIDTH: 98%; WORD-BREAK: break-all; PADDING-TOP: 4px; BORDER-BOTTOM: #cccccc 1px solid; BACKGROUND-COLOR: #eeeeee"> <font size="2"> <font face="Arial"> <img id="Codehighlighter1_27_121_Open_Image" onclick="this.style.display='none'; Codehighlighter1_27_121_Open_Text.style.display='none'; Codehighlighter1_27_121_Closed_Image.style.display='inline'; Codehighlighter1_27_121_Closed_Text.style.display='inline';" src="http://www.aygfsteel.com/images/OutliningIndicators/ExpandedBlockStart.gif" align="top" /> <img id="Codehighlighter1_27_121_Closed_Image" style="DISPLAY: none" onclick="this.style.display='none'; Codehighlighter1_27_121_Closed_Text.style.display='none'; Codehighlighter1_27_121_Open_Image.style.display='inline'; Codehighlighter1_27_121_Open_Text.style.display='inline';" src="http://www.aygfsteel.com/images/OutliningIndicators/ContractedBlock.gif" align="top" /> <span style="COLOR: #0000ff">public</span> <span style="COLOR: #000000"> </span> <span style="COLOR: #0000ff">class</span> <span style="COLOR: #000000"> CourseService </span> <span id="Codehighlighter1_27_121_Closed_Text" style="BORDER-RIGHT: #808080 1px solid; BORDER-TOP: #808080 1px solid; DISPLAY: none; BORDER-LEFT: #808080 1px solid; BORDER-BOTTOM: #808080 1px solid; BACKGROUND-COLOR: #ffffff"> <img src="http://www.aygfsteel.com/images/dot.gif" /> </span> </font> </font> <span id="Codehighlighter1_27_121_Open_Text"> <font size="2"> <font face="Arial"> <span style="COLOR: #000000">{ <br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/InBlock.gif" align="top" /><br /><img id="Codehighlighter1_73_117_Open_Image" onclick="this.style.display='none'; Codehighlighter1_73_117_Open_Text.style.display='none'; Codehighlighter1_73_117_Closed_Image.style.display='inline'; Codehighlighter1_73_117_Closed_Text.style.display='inline';" src="http://www.aygfsteel.com/images/OutliningIndicators/ExpandedSubBlockStart.gif" align="top" /><img id="Codehighlighter1_73_117_Closed_Image" style="DISPLAY: none" onclick="this.style.display='none'; Codehighlighter1_73_117_Closed_Text.style.display='none'; Codehighlighter1_73_117_Open_Image.style.display='inline'; Codehighlighter1_73_117_Open_Text.style.display='inline';" src="http://www.aygfsteel.com/images/OutliningIndicators/ContractedSubBlock.gif" align="top" />  </span> <span style="COLOR: #0000ff">public</span> <span style="COLOR: #000000"> </span> <span style="COLOR: #0000ff">void</span> <span style="COLOR: #000000"> sendCourseEnrollmentReport()</span> <span id="Codehighlighter1_73_117_Closed_Text" style="BORDER-RIGHT: #808080 1px solid; BORDER-TOP: #808080 1px solid; DISPLAY: none; BORDER-LEFT: #808080 1px solid; BORDER-BOTTOM: #808080 1px solid; BACKGROUND-COLOR: #ffffff"> <img src="http://www.aygfsteel.com/images/dot.gif" /> </span> </font> </font> <span id="Codehighlighter1_73_117_Open_Text"> <font size="2"> <font face="Arial"> <span style="COLOR: #000000">{ <br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/InBlock.gif" align="top" />    System.out.println(</span> <span style="COLOR: #000000">"</span> <span style="COLOR: #000000">HelloWorld</span> <span style="COLOR: #000000">"</span> </font> </font> <span style="COLOR: #000000"> <font face="Arial" size="2">); <br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/ExpandedSubBlockEnd.gif" align="top" />  }</font> </span> </span> <span style="COLOR: #000000"> <font face="Arial" size="2"> <br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/InBlock.gif" align="top" /><br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/ExpandedBlockEnd.gif" align="top" />}</font> </span> </span> </div> <br /> <font face="Arial" size="2">调度d的Class: <strong>TaskApp</strong><br /></font> <div style="BORDER-RIGHT: #cccccc 1px solid; PADDING-RIGHT: 5px; BORDER-TOP: #cccccc 1px solid; PADDING-LEFT: 4px; FONT-SIZE: 13px; PADDING-BOTTOM: 4px; BORDER-LEFT: #cccccc 1px solid; WIDTH: 98%; WORD-BREAK: break-all; PADDING-TOP: 4px; BORDER-BOTTOM: #cccccc 1px solid; BACKGROUND-COLOR: #eeeeee"> <font size="2"> <font face="Arial"> <img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" /> <span style="COLOR: #0000ff">import</span> </font> </font> <font size="2"> <font face="Arial"> <span style="COLOR: #000000"> org.springframework.beans.factory.BeanFactory; <br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" /></span> <span style="COLOR: #0000ff">import</span> </font> </font> <font size="2"> <font face="Arial"> <span style="COLOR: #000000"> org.springframework.beans.factory.xml.XmlBeanFactory; <br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" /></span> <span style="COLOR: #0000ff">import</span> </font> </font> <font size="2"> <font face="Arial"> <span style="COLOR: #000000"> org.springframework.core.io.FileSystemResource; <br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" /><br /><img id="Codehighlighter1_195_408_Open_Image" onclick="this.style.display='none'; Codehighlighter1_195_408_Open_Text.style.display='none'; Codehighlighter1_195_408_Closed_Image.style.display='inline'; Codehighlighter1_195_408_Closed_Text.style.display='inline';" src="http://www.aygfsteel.com/images/OutliningIndicators/ExpandedBlockStart.gif" align="top" /><img id="Codehighlighter1_195_408_Closed_Image" style="DISPLAY: none" onclick="this.style.display='none'; Codehighlighter1_195_408_Closed_Text.style.display='none'; Codehighlighter1_195_408_Open_Image.style.display='inline'; Codehighlighter1_195_408_Open_Text.style.display='inline';" src="http://www.aygfsteel.com/images/OutliningIndicators/ContractedBlock.gif" align="top" /></span> <span style="COLOR: #0000ff">public</span> <span style="COLOR: #000000"> </span> <span style="COLOR: #0000ff">class</span> <span style="COLOR: #000000"> TaskApp </span> <span id="Codehighlighter1_195_408_Closed_Text" style="BORDER-RIGHT: #808080 1px solid; BORDER-TOP: #808080 1px solid; DISPLAY: none; BORDER-LEFT: #808080 1px solid; BORDER-BOTTOM: #808080 1px solid; BACKGROUND-COLOR: #ffffff"> <img src="http://www.aygfsteel.com/images/dot.gif" /> </span> </font> </font> <span id="Codehighlighter1_195_408_Open_Text"> <font size="2"> <font face="Arial"> <span style="COLOR: #000000">{ <br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/InBlock.gif" align="top" /><br /><img id="Codehighlighter1_257_403_Open_Image" onclick="this.style.display='none'; Codehighlighter1_257_403_Open_Text.style.display='none'; Codehighlighter1_257_403_Closed_Image.style.display='inline'; Codehighlighter1_257_403_Closed_Text.style.display='inline';" src="http://www.aygfsteel.com/images/OutliningIndicators/ExpandedSubBlockStart.gif" align="top" /><img id="Codehighlighter1_257_403_Closed_Image" style="DISPLAY: none" onclick="this.style.display='none'; Codehighlighter1_257_403_Closed_Text.style.display='none'; Codehighlighter1_257_403_Open_Image.style.display='inline'; Codehighlighter1_257_403_Open_Text.style.display='inline';" src="http://www.aygfsteel.com/images/OutliningIndicators/ContractedSubBlock.gif" align="top" />  </span> <span style="COLOR: #0000ff">public</span> <span style="COLOR: #000000"> </span> <span style="COLOR: #0000ff">static</span> <span style="COLOR: #000000"> </span> <span style="COLOR: #0000ff">void</span> <span style="COLOR: #000000"> main(String[] args) </span> <span style="COLOR: #0000ff">throws</span> <span style="COLOR: #000000"> Exception </span> <span id="Codehighlighter1_257_403_Closed_Text" style="BORDER-RIGHT: #808080 1px solid; BORDER-TOP: #808080 1px solid; DISPLAY: none; BORDER-LEFT: #808080 1px solid; BORDER-BOTTOM: #808080 1px solid; BACKGROUND-COLOR: #ffffff"> <img src="http://www.aygfsteel.com/images/dot.gif" /> </span> </font> </font> <span id="Codehighlighter1_257_403_Open_Text"> <font size="2"> <font face="Arial"> <span style="COLOR: #000000">{ <br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/InBlock.gif" align="top" />    BeanFactory factory </span> <span style="COLOR: #000000">=</span> <span style="COLOR: #000000"> </span> <span style="COLOR: #0000ff">new</span> <span style="COLOR: #000000"> XmlBeanFactory(</span> <span style="COLOR: #0000ff">new</span> <span style="COLOR: #000000"> FileSystemResource( </span> <span style="COLOR: #000000">"</span> <span style="COLOR: #000000">WebRoot/WEB-INF/classes/scheduleTask.xml</span> <span style="COLOR: #000000">"</span> </font> </font> <font size="2"> <font face="Arial"> <span style="COLOR: #000000">)); <br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/InBlock.gif" align="top" />    factory.getBean(</span> <span style="COLOR: #000000">"</span> <span style="COLOR: #000000">z</span> <span style="COLOR: #000000">"</span> </font> </font> <span style="COLOR: #000000"> <font face="Arial" size="2">); <br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/ExpandedSubBlockEnd.gif" align="top" />  }</font> </span> </span> <span style="COLOR: #000000"> <font face="Arial" size="2"> <br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/InBlock.gif" align="top" />    <br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/ExpandedBlockEnd.gif" align="top" />}</font> </span> </span> <span style="COLOR: #000000"> <font face="Arial" size="2"> </font> </span> </div> <br /> <font face="Arial" size="2">配置调度执行d的配|文? </font> <strong> <font face="Arial" size="2">scheduleTask.xml<br /></font> </strong> <div style="BORDER-RIGHT: #cccccc 1px solid; PADDING-RIGHT: 5px; BORDER-TOP: #cccccc 1px solid; PADDING-LEFT: 4px; FONT-SIZE: 13px; PADDING-BOTTOM: 4px; BORDER-LEFT: #cccccc 1px solid; WIDTH: 98%; WORD-BREAK: break-all; PADDING-TOP: 4px; BORDER-BOTTOM: #cccccc 1px solid; BACKGROUND-COLOR: #eeeeee"> <font size="2"> <font face="Arial"> <img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" /> <span style="COLOR: #0000ff"><?</span> <span style="COLOR: #ff00ff">xml version="1.0" encoding="UTF-8"</span> <span style="COLOR: #0000ff">?></span> </font> </font> <font size="2"> <font face="Arial"> <span style="COLOR: #000000"> <br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" /></span> <span style="COLOR: #0000ff"><!</span> <span style="COLOR: #ff00ff">DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd"</span> <span style="COLOR: #0000ff">></span> </font> </font> <font size="2"> <font face="Arial"> <span style="COLOR: #000000"> <br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" /></span> <span style="COLOR: #0000ff"><</span> <span style="COLOR: #800000">beans</span> <span style="COLOR: #0000ff">></span> </font> </font> <font size="2"> <font face="Arial"> <span style="COLOR: #000000"> <br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />  </span> <span style="COLOR: #008000"><!--</span> <span style="COLOR: #008000">起动Bean</span> <span style="COLOR: #008000">--></span> </font> </font> <font size="2"> <font face="Arial"> <span style="COLOR: #000000"> <br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />  </span> <span style="COLOR: #0000ff"><</span> <span style="COLOR: #800000">bean </span> <span style="COLOR: #ff0000">id</span> <span style="COLOR: #0000ff">="z"</span> <span style="COLOR: #ff0000"> class</span> <span style="COLOR: #0000ff">="org.springframework.scheduling.quartz.SchedulerFactoryBean"</span> <span style="COLOR: #0000ff">></span> </font> </font> <font size="2"> <font face="Arial"> <span style="COLOR: #000000"> <br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />    </span> <span style="COLOR: #0000ff"><</span> <span style="COLOR: #800000">property </span> <span style="COLOR: #ff0000">name</span> <span style="COLOR: #0000ff">="triggers"</span> <span style="COLOR: #0000ff">></span> </font> </font> <font size="2"> <font face="Arial"> <span style="COLOR: #000000"> <br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />      </span> <span style="COLOR: #0000ff"><</span> <span style="COLOR: #800000">list</span> <span style="COLOR: #0000ff">></span> </font> </font> <font size="2"> <font face="Arial"> <span style="COLOR: #000000"> <br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />    </span> <span style="COLOR: #0000ff"><</span> <span style="COLOR: #800000">ref </span> <span style="COLOR: #ff0000">bean</span> <span style="COLOR: #0000ff">="cronReportTrigger"</span> <span style="COLOR: #ff0000"> </span> <span style="COLOR: #0000ff">/></span> </font> </font> <font size="2"> <font face="Arial"> <span style="COLOR: #000000"> <br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />      </span> <span style="COLOR: #0000ff"></</span> <span style="COLOR: #800000">list</span> <span style="COLOR: #0000ff">></span> </font> </font> <font size="2"> <font face="Arial"> <span style="COLOR: #000000"> <br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />    </span> <span style="COLOR: #0000ff"></</span> <span style="COLOR: #800000">property</span> <span style="COLOR: #0000ff">></span> </font> </font> <font size="2"> <font face="Arial"> <span style="COLOR: #000000"> <br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />  </span> <span style="COLOR: #0000ff"></</span> <span style="COLOR: #800000">bean</span> <span style="COLOR: #0000ff">></span> </font> </font> <font size="2"> <font face="Arial"> <span style="COLOR: #000000"> <br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />  </span> <span style="COLOR: #008000"><!--</span> <span style="COLOR: #008000">实际的工作Bean</span> <span style="COLOR: #008000">--></span> </font> </font> <font size="2"> <font face="Arial"> <span style="COLOR: #000000"> <br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />  </span> <span style="COLOR: #0000ff"><</span> <span style="COLOR: #800000">bean </span> <span style="COLOR: #ff0000">id</span> <span style="COLOR: #0000ff">="courseService"</span> <span style="COLOR: #ff0000"> class</span> <span style="COLOR: #0000ff">="CourseService"</span> <span style="COLOR: #0000ff">></span> </font> </font> <span style="COLOR: #000000"> <br /> <font face="Arial" size="2"> <img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />  </font> </span> <font size="2"> <font face="Arial"> <span style="COLOR: #0000ff"></</span> <span style="COLOR: #800000">bean</span> <span style="COLOR: #0000ff">></span> </font> </font> <font size="2"> <font face="Arial"> <span style="COLOR: #000000"> <br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />  </span> <span style="COLOR: #008000"><!--</span> <span style="COLOR: #008000">jobBean用于讑֮启动时运用的Bean与方?/span> <span style="COLOR: #008000">--></span> </font> </font> <font size="2"> <font face="Arial"> <span style="COLOR: #000000"> <br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />  </span> <span style="COLOR: #0000ff"><</span> <span style="COLOR: #800000">bean </span> <span style="COLOR: #ff0000">id</span> <span style="COLOR: #0000ff">="scheduledReportJobDetail"</span> <span style="COLOR: #ff0000"> class</span> <span style="COLOR: #0000ff">="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean"</span> <span style="COLOR: #0000ff">></span> </font> </font> <font size="2"> <font face="Arial"> <span style="COLOR: #000000"> <br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />    </span> <span style="COLOR: #0000ff"><</span> <span style="COLOR: #800000">property </span> <span style="COLOR: #ff0000">name</span> <span style="COLOR: #0000ff">="targetObject"</span> <span style="COLOR: #0000ff">></span> </font> </font> <font size="2"> <font face="Arial"> <span style="COLOR: #000000"> <br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />    </span> <span style="COLOR: #0000ff"><</span> <span style="COLOR: #800000">ref </span> <span style="COLOR: #ff0000">bean</span> <span style="COLOR: #0000ff">="courseService"</span> <span style="COLOR: #ff0000"> </span> <span style="COLOR: #0000ff">/></span> </font> </font> <font size="2"> <font face="Arial"> <span style="COLOR: #000000"> <br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />    </span> <span style="COLOR: #0000ff"></</span> <span style="COLOR: #800000">property</span> <span style="COLOR: #0000ff">></span> </font> </font> <font size="2"> <font face="Arial"> <span style="COLOR: #000000"> <br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />    </span> <span style="COLOR: #0000ff"><</span> <span style="COLOR: #800000">property </span> <span style="COLOR: #ff0000">name</span> <span style="COLOR: #0000ff">="targetMethod"</span> <span style="COLOR: #0000ff">></span> </font> </font> <font size="2"> <font face="Arial"> <span style="COLOR: #000000"> <br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />      </span> <span style="COLOR: #0000ff"><</span> <span style="COLOR: #800000">value</span> <span style="COLOR: #0000ff">></span> <span style="COLOR: #000000">sendCourseEnrollmentReport</span> <span style="COLOR: #0000ff"></</span> <span style="COLOR: #800000">value</span> <span style="COLOR: #0000ff">></span> </font> </font> <font size="2"> <font face="Arial"> <span style="COLOR: #000000"> <br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />    </span> <span style="COLOR: #0000ff"></</span> <span style="COLOR: #800000">property</span> <span style="COLOR: #0000ff">></span> </font> </font> <font size="2"> <font face="Arial"> <span style="COLOR: #000000"> <br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />  </span> <span style="COLOR: #0000ff"></</span> <span style="COLOR: #800000">bean</span> <span style="COLOR: #0000ff">></span> </font> </font> <font size="2"> <font face="Arial"> <span style="COLOR: #000000"> <br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />  </span> <span style="COLOR: #008000"><!--</span> <span style="COLOR: #008000">定时器设定v动频?amp;启动旉我设的是?Uv动一ơ?0 0 4 * * ?每日四点起动<img src="http://www.aygfsteel.com/images/dot.gif" />.)</span> <span style="COLOR: #008000">--></span> </font> </font> <font size="2"> <font face="Arial"> <span style="COLOR: #000000"> <br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />  </span> <span style="COLOR: #0000ff"><</span> <span style="COLOR: #800000">bean </span> <span style="COLOR: #ff0000">id</span> <span style="COLOR: #0000ff">="cronReportTrigger"</span> <span style="COLOR: #ff0000"> class</span> <span style="COLOR: #0000ff">="org.springframework.scheduling.quartz.CronTriggerBean"</span> <span style="COLOR: #0000ff">></span> </font> </font> <font size="2"> <font face="Arial"> <span style="COLOR: #000000"> <br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />    </span> <span style="COLOR: #0000ff"><</span> <span style="COLOR: #800000">property </span> <span style="COLOR: #ff0000">name</span> <span style="COLOR: #0000ff">="jobDetail"</span> <span style="COLOR: #0000ff">></span> </font> </font> <font size="2"> <font face="Arial"> <span style="COLOR: #000000"> <br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />    </span> <span style="COLOR: #0000ff"><</span> <span style="COLOR: #800000">ref </span> <span style="COLOR: #ff0000">bean</span> <span style="COLOR: #0000ff">="scheduledReportJobDetail"</span> <span style="COLOR: #ff0000"> </span> <span style="COLOR: #0000ff">/></span> </font> </font> <font size="2"> <font face="Arial"> <span style="COLOR: #000000"> <br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />    </span> <span style="COLOR: #0000ff"></</span> <span style="COLOR: #800000">property</span> <span style="COLOR: #0000ff">></span> </font> </font> <font size="2"> <font face="Arial"> <span style="COLOR: #000000"> <br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />    </span> <span style="COLOR: #0000ff"><</span> <span style="COLOR: #800000">property </span> <span style="COLOR: #ff0000">name</span> <span style="COLOR: #0000ff">="cronExpression"</span> <span style="COLOR: #0000ff">></span> </font> </font> <font size="2"> <font face="Arial"> <span style="COLOR: #000000"> <br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />      </span> <span style="COLOR: #0000ff"><</span> <span style="COLOR: #800000">value</span> <span style="COLOR: #0000ff">></span> <span style="COLOR: #000000">10,15,20,25,30,35,40,45,50,55 * * * * ?</span> <span style="COLOR: #0000ff"></</span> <span style="COLOR: #800000">value</span> <span style="COLOR: #0000ff">></span> </font> </font> <font size="2"> <font face="Arial"> <span style="COLOR: #000000"> <br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />    </span> <span style="COLOR: #0000ff"></</span> <span style="COLOR: #800000">property</span> <span style="COLOR: #0000ff">></span> </font> </font> <font size="2"> <font face="Arial"> <span style="COLOR: #000000"> <br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />  </span> <span style="COLOR: #0000ff"></</span> <span style="COLOR: #800000">bean</span> <span style="COLOR: #0000ff">></span> </font> </font> <font size="2"> <font face="Arial"> <span style="COLOR: #000000"> <br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" /></span> <span style="COLOR: #0000ff"></</span> <span style="COLOR: #800000">beans</span> <span style="COLOR: #0000ff">></span> </font> </font> </div> <br /> <font face="Arial" size="2">关于配置文g中参?strong>cronExpression</strong>的说?<br /></font> <div style="BORDER-RIGHT: #cccccc 1px solid; PADDING-RIGHT: 5px; BORDER-TOP: #cccccc 1px solid; PADDING-LEFT: 4px; FONT-SIZE: 13px; PADDING-BOTTOM: 4px; BORDER-LEFT: #cccccc 1px solid; WIDTH: 98%; WORD-BREAK: break-all; PADDING-TOP: 4px; BORDER-BOTTOM: #cccccc 1px solid; BACKGROUND-COLOR: #eeeeee"> <font face="Arial" size="2"> <img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" /> </font> <font size="2"> <font face="Arial"> <span style="COLOR: #000000">字段 允许值 允许的Ҏ字符 <br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />U?/span> <span style="COLOR: #000000">0</span> <span style="COLOR: #000000">-</span> <span style="COLOR: #000000">59</span> <span style="COLOR: #000000"> </span> <span style="COLOR: #000000">,</span> </font> </font> <font size="2"> <font face="Arial"> <span style="COLOR: #000000"> - * / <br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />分?/span> <span style="COLOR: #000000">0</span> <span style="COLOR: #000000">-</span> <span style="COLOR: #000000">59</span> <span style="COLOR: #000000"> </span> <span style="COLOR: #000000">,</span> </font> </font> <font size="2"> <font face="Arial"> <span style="COLOR: #000000"> - * / <br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />时 </span> <span style="COLOR: #000000">0</span> <span style="COLOR: #000000">-</span> <span style="COLOR: #000000">23</span> <span style="COLOR: #000000"> </span> <span style="COLOR: #000000">,</span> </font> </font> <font size="2"> <font face="Arial"> <span style="COLOR: #000000"> - * / <br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />日期 </span> <span style="COLOR: #000000">1</span> <span style="COLOR: #000000">-</span> <span style="COLOR: #000000">31</span> <span style="COLOR: #000000"> </span> <span style="COLOR: #000000">,</span> </font> </font> <font size="2"> <font face="Arial"> <span style="COLOR: #000000"> - * ? / L W C <br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />月䆾 </span> <span style="COLOR: #000000">1</span> <span style="COLOR: #000000">-</span> <span style="COLOR: #000000">12</span> <span style="COLOR: #000000"> 或者 JAN-DEC </span> <span style="COLOR: #000000">,</span> </font> </font> <font size="2"> <font face="Arial"> <span style="COLOR: #000000"> - * / <br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />星期 </span> <span style="COLOR: #000000">1</span> <span style="COLOR: #000000">-</span> <span style="COLOR: #000000">7</span> <span style="COLOR: #000000"> 或者 SUN-SAT </span> <span style="COLOR: #000000">,</span> </font> </font> <font size="2"> <font face="Arial"> <span style="COLOR: #000000"> - * ? / L C # <br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" />q_可选) 留空</span> <span style="COLOR: #000000">,</span> <span style="COLOR: #000000"> </span> <span style="COLOR: #000000">1970</span> <span style="COLOR: #000000">-</span> <span style="COLOR: #000000">2099</span> <span style="COLOR: #000000"> </span> <span style="COLOR: #000000">,</span> <span style="COLOR: #000000"> - * / </span> </font> </font> </div> <br /> <font face="Arial" size="2">表达式意?<br /></font> <div style="BORDER-RIGHT: #cccccc 1px solid; PADDING-RIGHT: 5px; BORDER-TOP: #cccccc 1px solid; PADDING-LEFT: 4px; FONT-SIZE: 13px; PADDING-BOTTOM: 4px; BORDER-LEFT: #cccccc 1px solid; WIDTH: 98%; WORD-BREAK: break-all; PADDING-TOP: 4px; BORDER-BOTTOM: #cccccc 1px solid; BACKGROUND-COLOR: #eeeeee"> <font size="2"> <font face="Arial"> <img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" /> <span style="COLOR: #000000">"</span> <span style="COLOR: #000000">0 0 12 * * ?</span> <span style="COLOR: #000000">"</span> </font> </font> <font size="2"> <font face="Arial"> <span style="COLOR: #000000"> 每天中午12点触发?br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" /></span> <span style="COLOR: #000000">"</span> <span style="COLOR: #000000">0 15 10 ? * *</span> <span style="COLOR: #000000">"</span> </font> </font> <font size="2"> <font face="Arial"> <span style="COLOR: #000000"> 每天上午10:15触发 <br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" /></span> <span style="COLOR: #000000">"</span> <span style="COLOR: #000000">0 15 10 * * ?</span> <span style="COLOR: #000000">"</span> </font> </font> <font size="2"> <font face="Arial"> <span style="COLOR: #000000"> 每天上午10:15触发 <br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" /></span> <span style="COLOR: #000000">"</span> <span style="COLOR: #000000">0 15 10 * * ? *</span> <span style="COLOR: #000000">"</span> </font> </font> <font size="2"> <font face="Arial"> <span style="COLOR: #000000"> 每天上午10:15触发 <br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" /></span> <span style="COLOR: #000000">"</span> <span style="COLOR: #000000">0 15 10 * * ? 2005</span> <span style="COLOR: #000000">"</span> </font> </font> <font size="2"> <font face="Arial"> <span style="COLOR: #000000"> 2005q的每天上午10:15触发 <br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" /></span> <span style="COLOR: #000000">"</span> <span style="COLOR: #000000">0 * 14 * * ?</span> <span style="COLOR: #000000">"</span> </font> </font> <font size="2"> <font face="Arial"> <span style="COLOR: #000000"> 在每天下?点到下午2:59期间的每1分钟触发 <br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" /></span> <span style="COLOR: #000000">"</span> <span style="COLOR: #000000">0 0/5 14 * * ?</span> <span style="COLOR: #000000">"</span> </font> </font> <font size="2"> <font face="Arial"> <span style="COLOR: #000000"> 在每天下?点到下午2:55期间的每5分钟触发 <br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" /></span> <span style="COLOR: #000000">"</span> <span style="COLOR: #000000">0 0/5 14,18 * * ?</span> <span style="COLOR: #000000">"</span> </font> </font> <font size="2"> <font face="Arial"> <span style="COLOR: #000000"> 在每天下?点到2:55期间和下?点到6:55期间的每5分钟触发 <br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" /></span> <span style="COLOR: #000000">"</span> <span style="COLOR: #000000">0 0-5 14 * * ?</span> <span style="COLOR: #000000">"</span> </font> </font> <font size="2"> <font face="Arial"> <span style="COLOR: #000000"> 在每天下?点到下午2:05期间的每1分钟触发 <br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" /></span> <span style="COLOR: #000000">"</span> <span style="COLOR: #000000">0 10,44 14 ? 3 WED</span> <span style="COLOR: #000000">"</span> </font> </font> <font size="2"> <font face="Arial"> <span style="COLOR: #000000"> 每年三月的星期三的下?:10?:44触发 <br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" /></span> <span style="COLOR: #000000">"</span> <span style="COLOR: #000000">0 15 10 ? * MON-FRI</span> <span style="COLOR: #000000">"</span> </font> </font> <font size="2"> <font face="Arial"> <span style="COLOR: #000000"> 周一臛_五的上午10:15触发 <br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" /></span> <span style="COLOR: #000000">"</span> <span style="COLOR: #000000">0 15 10 15 * ?</span> <span style="COLOR: #000000">"</span> </font> </font> <font size="2"> <font face="Arial"> <span style="COLOR: #000000"> 每月15日上?0:15触发 <br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" /></span> <span style="COLOR: #000000">"</span> <span style="COLOR: #000000">0 15 10 L * ?</span> <span style="COLOR: #000000">"</span> </font> </font> <font size="2"> <font face="Arial"> <span style="COLOR: #000000"> 每月最后一日的上午10:15触发 <br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" /></span> <span style="COLOR: #000000">"</span> <span style="COLOR: #000000">0 15 10 ? * 6L</span> <span style="COLOR: #000000">"</span> </font> </font> <font size="2"> <font face="Arial"> <span style="COLOR: #000000"> 每月的最后一个星期五上午10:15触发 <br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" /></span> <span style="COLOR: #000000">"</span> <span style="COLOR: #000000">0 15 10 ? * 6L 2002-2005</span> <span style="COLOR: #000000">"</span> </font> </font> <font size="2"> <font face="Arial"> <span style="COLOR: #000000"> 2002q至2005q的每月的最后一个星期五上午10:15触发 <br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" /></span> <span style="COLOR: #000000">"</span> <span style="COLOR: #000000">0 15 10 ? * 6#3</span> <span style="COLOR: #000000">"</span> </font> </font> <font size="2"> <font face="Arial"> <span style="COLOR: #000000"> 每月的第三个星期五上?0:15触发 <br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" /></span> <span style="COLOR: #000000">0</span> <span style="COLOR: #000000"> </span> <span style="COLOR: #000000">6</span> </font> </font> <font size="2"> <font face="Arial"> <span style="COLOR: #000000"> * * *          每天早上6点 ?br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" /></span> <span style="COLOR: #000000">0</span> <span style="COLOR: #000000"> */</span> <span style="COLOR: #000000">2</span> </font> </font> <font size="2"> <font face="Arial"> <span style="COLOR: #000000"> * * *        每两个小时 ?br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" /></span> <span style="COLOR: #000000">0</span> <span style="COLOR: #000000"> </span> <span style="COLOR: #000000">23</span> <span style="COLOR: #000000">-</span> <span style="COLOR: #000000">7</span> <span style="COLOR: #000000">/</span> <span style="COLOR: #000000">2</span> <span style="COLOR: #000000">Q?/span> <span style="COLOR: #000000">8</span> </font> </font> <font size="2"> <font face="Arial"> <span style="COLOR: #000000"> * * *  晚上11点到早上8点之间每两个时Q早上八点 ?br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" /></span> <span style="COLOR: #000000">0</span> <span style="COLOR: #000000"> </span> <span style="COLOR: #000000">11</span> <span style="COLOR: #000000"> </span> <span style="COLOR: #000000">4</span> <span style="COLOR: #000000"> * </span> <span style="COLOR: #000000">1</span> <span style="COLOR: #000000">-</span> <span style="COLOR: #000000">3</span> </font> </font> <font size="2"> <font face="Arial"> <span style="COLOR: #000000">       每个月的4号和每个C拜的礼拜一到礼拜三的早?1点 ?br /><img src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" /></span> <span style="COLOR: #000000">0</span> <span style="COLOR: #000000"> </span> <span style="COLOR: #000000">4</span> <span style="COLOR: #000000"> </span> <span style="COLOR: #000000">1</span> <span style="COLOR: #000000"> </span> <span style="COLOR: #000000">1</span> <span style="COLOR: #000000"> *          1?日早?点?/span> </font> </font> </div> <br /> <font face="Arial" size="2"> <strong>Download</strong>:<br /></font> <a > <font face="Arial" size="2">Quartz</font> </a> <br /> <br /> <font face="Arial" size="2"> <strong>相关文档</strong>:<br /></font> <a > <font face="Georgia">http://blog.csdn.net/ezerg/archive/2004/09/24/115894.aspx</font> </a> <br /> <a > <font face="Georgia">http://blog.csdn.net/yujiebo025/archive/2005/09/13/479049.aspx</font> </a> <br /> <a > <font face="Georgia">http://blog.csdn.net/mengz/archive/2005/01/13/252267.aspx</font> </a> <br /> <a > <font face="Georgia">http://blog.csdn.net/jorwang/archive/2005/05/12/374111.aspx</font> </a> <br /> <a > <font face="Georgia">http://blog.csdn.net/Mailbomb/archive/2005/10/26/517128.aspx</font> </a> <br /> <a > <font face="Georgia">http://blog.csdn.net/stonecai/archive/2007/01/06/1475745.aspx</font> </a> <br /> <a > <font face="Georgia">http://landerchan.spaces.live.com/Blog/cns!8759A7C5A9737DC!116.entry</font> </a> <br /> <a > <font face="Georgia">http://hanxinyu.javaeye.com/blog/37000</font> </a> <br /> <a > <font face="Georgia">http://www.onjava.com/pub/a/onjava/2004/03/10/quartz.html</font> </a> <br /> <img src ="http://www.aygfsteel.com/zJun/aggbug/142978.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.aygfsteel.com/zJun/" target="_blank">zJun's帛罗?/a> 2007-09-05 19:40 <a href="http://www.aygfsteel.com/zJun/archive/2007/09/05/142978.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>Java5 featurehttp://www.aygfsteel.com/zJun/archive/2007/08/17/137714.htmlzJun's帛罗?/dc:creator>zJun's帛罗?/author>Fri, 17 Aug 2007 15:27:00 GMThttp://www.aygfsteel.com/zJun/archive/2007/08/17/137714.htmlhttp://www.aygfsteel.com/zJun/comments/137714.htmlhttp://www.aygfsteel.com/zJun/archive/2007/08/17/137714.html#Feedback0http://www.aygfsteel.com/zJun/comments/commentRss/137714.htmlhttp://www.aygfsteel.com/zJun/services/trackbacks/137714.html阅读全文

]]>
ExtremeTable 数据库分늚写法http://www.aygfsteel.com/zJun/archive/2007/08/08/135106.htmlzJun's帛罗?/dc:creator>zJun's帛罗?/author>Tue, 07 Aug 2007 16:02:00 GMThttp://www.aygfsteel.com/zJun/archive/2007/08/08/135106.htmlhttp://www.aygfsteel.com/zJun/comments/135106.htmlhttp://www.aygfsteel.com/zJun/archive/2007/08/08/135106.html#Feedback1http://www.aygfsteel.com/zJun/comments/commentRss/135106.htmlhttp://www.aygfsteel.com/zJun/services/trackbacks/135106.html < ec:table  items ="itemList"  var ="item"  action ="${pageContext.request.contextPath}/query.do"
retrieveRowsCallback
="limit"  
filterRowsCallback
="limit"
 
sortRowsCallback
="limit"
  >

 
< ec:exportXls  fileName ="CouponList.xls"  tooltip ="导出 Excel" />
< ec:row >
    
< ec:column  property ="rowcount"  cell ="rowCount"  sortable ="false"  title ="序号" />
    
< ec:column  property ="id"  title ="~号" />
    
< ec:column  property ="type"  title ="U类" >
          ${typeMap[item.type]}
    
</ ec:column >
    
< ec:column  property ="name"  title ="名称" />
    
< ec:column  property ="beginDate"  title ="开始时?  cell ="calendar"  format ="date"   />
    
< ec:column  property ="endDate"  title ="l束旉"  cell ="calendar"  format ="date"   />
    
< ec:column  property ="state"  title ="状? >
        ${statusmap[coupon.status]}
    
</ ec:column >
    
< ec:column  property ="edit"  title ="操作"  sortable ="false"  viewsAllowed ="html"
                       style
="width: 56px;text-align: center" >
                
< href ="<c:url value=" /security/user.do?method =selectRoles&userId=${user.id}"  /> ">  < img
                        
src ="<c:url value=" /images/icon/16x16/manage.gif" /> " border="0"/>  </ A >

            
</ ec:column >
        
</ ec:row >
    
</ ec:table >
其中Q?br />      retrieveRowsCallback="limit"
     filterRowsCallback="limit"
     sortRowsCallback="limit"
指定了callback函数 limit

在controller 中的处理Q?br />
  /**
  * 列表查看
*/

protected   void  onList(HttpServletRequest request,HttpServletResponse response, ModelAndView mav)  throws  Exception  {
   Limit limit 
=
 ExtremeTablePage.getLimit(request);
   Map map 
=  WebUtils.getParametersStartingWith(request,  " search_ "
);
   Page page
=
service.queryForPage(map,ExtremeTablePage.getSort(limit),limit.getPage(), limit.getCurrentRowsDisplayed());
   mav.addObject(
" itemList "
, page.getResult());
   mav.addObject(
" totalRows "
,page.getTotalCount());
}


]]>
查看Oracle中锁表的sql语句http://www.aygfsteel.com/zJun/archive/2007/07/27/132869.htmlzJun's帛罗?/dc:creator>zJun's帛罗?/author>Fri, 27 Jul 2007 10:23:00 GMThttp://www.aygfsteel.com/zJun/archive/2007/07/27/132869.htmlhttp://www.aygfsteel.com/zJun/comments/132869.htmlhttp://www.aygfsteel.com/zJun/archive/2007/07/27/132869.html#Feedback0http://www.aygfsteel.com/zJun/comments/commentRss/132869.htmlhttp://www.aygfsteel.com/zJun/services/trackbacks/132869.html 摘自Q? chinaunix

SELECT   S.SID SESSION_ID, S.USERNAME, DECODE(LMODE,  0 ' None ' 1 ' Null ' 2 ' Row-S (SS) ' 3 ' Row-X (SX) ' ,   4 ' Share ' 5 ' S/Row-X (SSX) ' ,   6 ' Exclusive ' , TO_CHAR(LMODE)) MODE_HELD, DECODE(REQUEST,  0 ' None ' 1 ' Null ' 2 ' Row-S (SS) ' 3 ' Row-X (SX) ' 4 ' Share ' 5 ' S/Row-X (SSX) ' 6 ' Exclusive ' , TO_CHAR(REQUEST)) MODE_REQUESTED, O.OWNER || ' . ' || O. OBJECT_NAME || '  ( ' || O.OBJECT_TYPE || ' ) ' , S.TYPE LOCK_TYPE, L.ID1 LOCK_ID1, L.ID2 LOCK_ID2 
FROM
 V$LOCK L, SYS.DBA_OBJECTS O, V$SESSION S 
WHERE  L.SID  =  S.SID  AND   L.ID1  =  O. OBJECT_ID

执行上记SQL语句,可以查寻到数据库中的锁的情报.

SESSION_ID, USERNAME,  MODE_HELD,  MODE_REQUESTED, OBJECT_NAME, LOCK_TYPE, LOCK_ID

分别?拥有锁的SESSION_ID,拥有锁的USERNAME,锁的执行模式MODE_HELD,锁的hMODE_REQUESTED,锁所在的数据库对象名
,锁的cd,锁的ID


]]>
Java 多线E中的死锁问?/title><link>http://www.aygfsteel.com/zJun/archive/2007/07/24/67213.html</link><dc:creator>zJun's帛罗?/dc:creator><author>zJun's帛罗?/author><pubDate>Tue, 24 Jul 2007 11:02:00 GMT</pubDate><guid>http://www.aygfsteel.com/zJun/archive/2007/07/24/67213.html</guid><wfw:comment>http://www.aygfsteel.com/zJun/comments/67213.html</wfw:comment><comments>http://www.aygfsteel.com/zJun/archive/2007/07/24/67213.html#Feedback</comments><slash:comments>1</slash:comments><wfw:commentRss>http://www.aygfsteel.com/zJun/comments/commentRss/67213.html</wfw:commentRss><trackback:ping>http://www.aygfsteel.com/zJun/services/trackbacks/67213.html</trackback:ping><description><![CDATA[     摘要: Java中的多线E用synchronized关键字实现同?Z避免U程中用共享资源的冲突,当线E进入synchronized的共享对象时,ؓ׃n对象加上?L其他的线E进入该׃n对象.但是,正因?当多U程讉K多个׃n对象?如果U程锁定对象的顺序处理不当话有可能U程间相互等待的情况,卛_说的: 死锁现象.  <a href='http://www.aygfsteel.com/zJun/archive/2007/07/24/67213.html'>阅读全文</a><img src ="http://www.aygfsteel.com/zJun/aggbug/67213.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.aygfsteel.com/zJun/" target="_blank">zJun's帛罗?/a> 2007-07-24 19:02 <a href="http://www.aygfsteel.com/zJun/archive/2007/07/24/67213.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item></channel></rss> <footer> <div class="friendship-link"> <a href="http://www.aygfsteel.com/" title="狠狠久久亚洲欧美专区_中文字幕亚洲综合久久202_国产精品亚洲第五区在线_日本免费网站视频">狠狠久久亚洲欧美专区_中文字幕亚洲综合久久202_国产精品亚洲第五区在线_日本免费网站视频</a> </div> </footer> վ֩ģ壺 <a href="http://" target="_blank"></a>| <a href="http://" target="_blank">ˮ</a>| <a href="http://" target="_blank">ƽ</a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank">³ɽ</a>| <a href="http://" target="_blank">ʯɽ</a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank">Ϣ</a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank">ٸ</a>| <a href="http://" target="_blank">ͼƬ</a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank">ũ</a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank">Һ</a>| <a href="http://" target="_blank">ͼ</a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank">״</a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank">ɽ</a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank">ˮ</a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank">绯</a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank">ˮ</a>| <a href="http://" target="_blank">ͭ</a>| <a href="http://" target="_blank">ϼ</a>| <a href="http://" target="_blank">ƽ</a>| <a href="http://" target="_blank">¡</a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank"></a>| <a href="http://" target="_blank"></a>| <script> (function(){ var bp = document.createElement('script'); var curProtocol = window.location.protocol.split(':')[0]; if (curProtocol === 'https') { bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; } else { bp.src = 'http://push.zhanzhang.baidu.com/push.js'; } var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(bp, s); })(); </script> </body>