發表文章

目前顯示的是 3月, 2012的文章

solaris11安裝Tomcat7

1. 連結到   Tomcat的官方網站   下載,tomcat7 2. 解壓縮,程式解壓縮在原下載目錄,再move到/opt/tomcat-7 3. 啟動 Tomcat, /opt/tomcat-7/bin ./startup.sh 會出現以下訊息 Using CATALINA_BASE:    /opt/tomcat-7 Using CATALINA_HOME:    /opt/tomcat-7 Using CATALINA_TMPDIR:  /opt/tomcat-7/temp Using JRE_HOME:       /usr Using CLASSPATH:     /opt/tomcat-7/bin/bootstarp.jar: /opt/tomcat-7/bin/tomcat-juli.jar 表示執行成功 4. 開啟 Firefox,並在網址列輸入 http://localhost:8080,可看到tomcat的manager畫面,表示 Tomcat 已正常啟動,其中 8080 是 Tomcat 預設的 port,可以自行修改,設定檔為 /opt/tomcat7/conf/server.xml 。

solaris11安裝java7

JDK 7 Installation Instructions for Oracle Solaris 11 using IPS packages To install JDK 7 on Oracle Solaris 11, install the  jdk-7  package: Make sure the  jdk-7  package is available from your IPS publisher. $ pkg list -a jdk-7==>查看是否在安裝清單中 NAME (PUBLISHER) VERSION IFO developer/java/jdk-7 1.7.0.0-0.173.0.0.0.0.0 ---==>有出現這個就是有在清單中 If you see an "i" in the I column, then the package is already installed. This package is available from the  solaris  publisher at  pkg.oracle.com  and also from other publisher origins. If you see a message that no such package is found, use the  pkg publisher  command to check your publisher origin and contact your system administrator or Oracle Support representative. Make sure you have permission to install IPS packages. Use the profiles command to list the rights profiles that are assigned to you. If you have the Software Installation rights profile, you can use the  pfexec  command t

iReport設定javabean的資料來源

圖片

Java 中四種四捨五入的比較

(1)Math.round(): 正數時四捨五入,負數時五捨六入 (2)DecimalFormat.format(): 四捨六入五成雙。五成雙的意思是,當要進位或捨去的那一位數剛好是 5 時,在進位或捨去後必須尾數雙數 (3)BigDecimal(double).setScale(): 基本上是四捨五入,但有時五會是捨,無法檢簡的歸出一個邏輯,主因是 double 的值有時實際上不是我們認為的值,而是非常接近我們認為的值 (4)BigDecimal(String).setScale(): 精確的四捨五入

tomcat的context.xml設定參數說明

設定檔中 Resource 標籤中各屬性的含義: driverClassName - JDBC 所用到的數據庫驅動的類全名 . maxActive - 連接池在同一時刻內所提供的最大活動連接數。 設置為-1即表示不限制 maxIdle - 連接池在空閑時刻保持的最大連接數 . maxWait - 當發生異常時數據庫等待的最大毫秒數 ( 當沒有可用的連接時 ). password - 連接數據庫的密碼 . url - 連接至驅動的 URL. ( 為了向後相容 , DRIVERNAME 也被允許 .) user - 數據庫用戶名 . initialSize- 初始化連接

mysql查看當前所有連接

以root身份登錄MySQL, 執行show processlist;命令來查看當前所有連接。