STRUTS INTERNATIONALIZATION

In this tutorial we shall see how to implement Internationalization (abbreviated as I18N) in Struts. The Multinational Corporations have their branches in various parts of the world. so, they must provide products and services to their clients and customers in their traditional way. The customers will expect the product to work in their native languages […]

Configuring Struts DataSource Manager on Tomcat 5

This tutorial shows you how you can configure Struts DataSource Manager on the Tomcat 5.5.9 server. We will use struts 1.2.7 in this tutorial. In this tutorial we will configure Struts DataSource Manager to use MySQL Database and use the connection provided by Struts DataSource in action class. Downloading and Installing Tomcat 5.5.9Download jakarta-tomcat-5.5.9 from […]

STRUTS ACTION – AGGREGATING ACTIONS IN STRUTS

If you are a Struts developer then you might have experienced the pain of writing huge number of Action classes for your project. The latest version of struts provides classes using which you can aggregate a related set of actions into a single unified action. In this article we will see how to achieve this. […]

NOD32最新升級ID nod32升级服务器 nod32下载 nod32破解版 nod32注册码

2007年9月6號   UserName: AV-6476241Password: n1d7xtk7koUserName: AV-6488086Password: it9gqnd33aUserName: AV-6471366Password: 3gufs98wcqUserName: AV-6258073Password: y17dhcb1f4UserName: AV-6454441 Password: 2mo24goes2UserName: AV-6360500Password: 73ec6ds05rUserName: AV-6069610Password: p96wc7bfbhUserName: AV-6516992 Password: ise0qj9a8y

How to fix “java.lang.OutOfMemoryError: unable to create new native thread”

I recently came across this exception on a couple of java systems that use many threads  java.lang.OutOfMemoryError: unable to create new native thread. The strange thing was that the JVM had been assigned a lot of memory (1.5GB) and that it had at least half the memory available. Michele found this article that points out that the more […]

Javascript Dates-The Complete Reference

Javascript Dates-The Complete Reference Filed: Mon, Apr 23 2007 under Programming|| Tags: reference date javascript julian countdown Of all the core Javascript objects, I find Dates to be the most fascinating. Once you learn a few small tricks everything about Javascript Dates just seem to fall into place and you find that there’s really nothing […]

Open Webmail 安裝流程

Open Webmail 官方網站:http://openwebmail.org/注意:要架設 Open Webmail 前,請務必先將 sendmail、dovecot 架設好 安裝 cdyum -y install perl-suidperl perl-Compress-Zlib perl-Text-Iconv wget http://openwebmail.org/openwebmail/download/redhat/rpm/release/openwebmail-2.52-1.i386.rpmrpm -ivh openwebmail-2.52-1.i386.rpmrm -rf openwebmail-2.52-1.i386.rpm修改 openwebmail.conf cp /var/www/cgi-bin/openwebmail/etc/openwebmail.conf /var/www/cgi-bin/openwebmail/etc/openwebmail.conf.bakvi /var/www/cgi-bin/openwebmail/etc/openwebmail.conf55行 enable_pop3 yes 修改成–> enable_pop3 no62行 default_language en 修改成–> default_language zh_TW.Big585行 default_iconset Cool3D.English 修改成–> default_iconset Cool3D.Chinese.Traditional   76行 <default_signature>77行 —78行 Open WebMail Project (http://openwebmail.org)79行 </default_signature> #此此四行是使用者寄信的預設簽名檔,請自行修改紅字部分   202行 webdisk_rootpath /webdisk […]

分享一下我的Eclipse啓動參數

eclipse.exe -nl en_US -clean -vmargs -Xverify:none -XX:+UseParallelGC -XX:PermSize=20M -XX:MaxNewSize=32M -XX:NewSize=32M -Xmx256m -Xms128m -nl 後面跟的是語言 -clean 是當啓動Eclipse IDE時清空緩衝,一般來説在没有更新插件的情况下,去掉這個參數啓動速度更快。 -vmargs 使用JRE的參數,後面就是JRE的參數了: -Xverify:none 去掉JAR包數據驗證,一般來説只有在網絡環境下才需要驗證JAR包數據的有效性。本地的話可以不用驗證。 -XX:+UseParallelGC 使用并行垃圾收集機制,據説這個GC算法比較快。具體不清楚。 -XX:PermSize=20M -XX:MaxNewSize=32M -XX:NewSize=32M 這三個就是設置詳細的緩衝數據了。詳情看Java官方網站的介紹吧。 -Xmx256m Java虚擬機最大使用内存容量,根據你所使用機器的内容大小設置,只要不超過最大内存容量就好。 -Xms128m Java虚擬機初始化内存容量。 在偶Athlon64 3000+,1GB DDR400的機器第一次啓動速度不到20秒,第二次啓動速度10秒左右。希望對大家有用。