2016年1月13日 星期三

2015年12月30日 星期三

2015年6月23日 星期二

Create centos6 USB installer on Mac

原本想使用unetbootin來製做USB安裝程式,但搞老半天, 安裝到一半,就是會出現錯誤訊息 官網有講由 CentOS 6.5 起,你只需透過 dd 把 ISO 檔移至 USB 儲存器,便能利用它進行安裝 所以打開MAC 1.看看掛載的情況 diskutil list /dev/disk2 就是隨身碟 2.卸載 diskutil unmountDisk /dev/disk2 3.用官網教的指令就能製做出來了 sudo dd if=CentOS-6.5-x86_64-minimal.iso of=/dev/disk2 bs=...

2015年6月19日 星期五

AWS EC2 Build Tomcat And Single MongoDB

價格試算 EC2 1.註冊 2.進到console home後,選Region 3.Launch Instance  Key Pairs 產生[name].pem,並下載,登入時要用 Security groups 增加SSH TCP 22 PORT 會自己建立一個VPC 4.產生後,回到Instances 頁面 就會新增剛才建立的,可選上方的Connect,可以用 ssh [ubuntu]@[public_ip] -i $PATH/[name].pem 來登入 5.登入後,安裝tomcat, 放程式 sudo apt-get update sudo apt-get install tomat7 /usr/share/tomcat7 /var/log/tomcat7 /etc/tomcat7 sudo service...

2014年10月26日 星期日

org.springframework.web.context.ContextLoaderListener

使用 Spring 3.2.x 時, 只要一讀取     <listener>         <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>     </listener> 就會出現下面Exception 原來是因為我Tomcat使用了JDK1.8 若要用1.8, Spring必須upgrade成4才會支援1.8的byte code format -- ERROR [org.springframework.web.context.ContextLoader] - <Context initialization failed> java.lang.IllegalArgumentException ...

2014年9月10日 星期三

Design Pattern - CQRS

CQRS ref: http://johnnycoder.com/blog/2009/12/18/learn-domain-driven-design/ http://www.codeproject.com/Articles/555855/Introduction-to-CQRS 通常進行CRUD會有二個問題 collaboration 同時操作相同資料時 staleness 某筆資料, 當A查詢後, B修改 主要是想把二者責任分離 Command Query image source : http://www.udidahan.com/2009/12/09/clarified-cqrs/ image...